2.2.1 Programming fundamentals Flashcards
What is a variable?
Part of a program that can be assigned a specific value
What are the characteristics of a variable?
Consists of a descriptive identifier and the value assigned to it.
Can be changed within a program as it runs and is not fixed
What is a constant?
Value that cannot be changed or edited within a running program
What does the input command require?
The user to type in a response to a question that can be processed in some way
What is an output?
Displaying a message or returning a response to the user
What is the print command used for?
Display an output, using quotation marks
What is a sequence?
The act of carrying out a step-by-step process in a logical order
What is iteration?
The act of repeating any process until a specified result is reached
What can be used to repeat a question until a specific answer is provided?
While loop
What is selection?
Allows decisions to be made within the program using if and else statements.
What are all the arithmetic operators?
*
/
MOD
DIV
What does MOD stand for?
Modulus
What does DIV stand for?
Quotient
What is the function of +?
Addition of two or more values
What is the function of -?
Subtraction of one value from another
What is the function of *?
Multiplication of values
What is the function of /?
One value divided by another
What is the function of MOD?
returns the remainder after a division
What is the function of DIV?
divided but returns only a whole number or integer
What is the function of ^?
one value to the power of another
Why are Boolean operators used?
Used in programs to define relationships, using Boolean logic, between data values
What are all the Boolean Operators?
AND
OR
NOT
What is the function of AND?
If two or more statements are true
What is the function of OR?
If either statement is true
What is the function of NOT?
To revers the logical results of a statement
Why are comparison operators used?
Used by programmers to test the relationship between two values
What are all the comparison operators?
==
!=
<
<=
>
>=
What is the function of ==?
Exactly equal to
What is the function of !=?
Not equal to
What is the function of <?
Less than
What is the function of <=?
less than or equal to
What is the function of >?
Greater than
What is the function of >=?
greater than or equal to