This is a container that stores data in a program.
What is a variable?
This conditional statement will perform an action if an argument is true.
What is an if statement?
This symbol is commonly used to denote multiplication.
What is an asterisk (*)?
This can be used as a visual representation of code using shapes and arrows.
What is a flowchart?
This variable type stores a whole number.
What is an int/integer?
This is a necessary component of an if statement.
What is a condition?
This symbol is commonly used to denote division.
What is a slash (/)?
This is a visual representation of code using text. It gives general information and is non language specific.
What is pseudocode?
This variable type stores a single letter or symbol.
What is a char/character?
This loop will run until a condition is met.
What is a while loop?
This operator adds one to the existing value.
What is ++?
What will the outcome of this pseudocode be?
int a = 5;
int b = 6;
if (a > 8 && b < 7) {
print("yes");
} else {
print("no");
}
"no"
This variable type stores a word.
What is a string?
This is a process stored in code that can be reused. This requires input(s) called parameters and returns an output.
What is a function?
This operator tests if both the left and right conditions are true.
What is &&?
This shape denotes the beginning or end of a flowchart program.
What is an oval?
This variable type stores a true/false value.
What is a bool/boolean?
These are necessary components of a for loop.
What is a variable, constraint, and increment?
This is the difference between the = and == operators.
What is: = sets left side equal to right side, == tests if left side is equal to right side?
This shape denotes a decision that needs to be made in flowchart code.
What is a diamond?