Operators
Terms
Control Structures
100
These are called Boolean or conditional expressions
What is relational operators?
100
This stands for the remainder of a division problem.
What is MOD Modulus Division?
100
The flowlines within the flowchart will only flow downward and there is no branching or repeating of instructions.
What is a sequence flowchart?
200
In cases where a simple condition is not sufficient (for example, when the value of a variable should be less than some number but greater than another number), conditional expressions can be combined to create compound Boolean expressions
What is a logical operator?
200
This is any whole number that can be positive or negative
What is an integer?
200
The flowlines within the flowchart begin to branch to alternative processing paths for "true" and "false" alternatives
What is selection flowchart?
300
Both simple expressions must be true for the compound expression to be true. If either simple expression is false, the entire compound expression is false.
What is AND?
300
This is any floating-point number that is positive or negative
What is a real number?
300
The logic is done while a condition (or test) stays "true." Once the condition (or test) becomes "false," the loop will stop.
What is a repetition flow chart?
400
One or both of the simple expressions must be true for the compound expression to be true.
What is OR?
400
These are any sets of characters surrounded by double quotes
What is a string?
400
This control structure allows the design algorithm to take different paths or alternatives to the sequential process
What is selection control structure?
500
This operator just reverses the truth value of the associated Boolean expression.
What is NOT?
500
These are variables where the value of the variable does not change during the execution of your program.
What is a constant?
500
This control structure allows the design algorithm to repeat blocks of code based on some condition.
What is repetition control structure?
M
e
n
u