You can think of an array as a _________ of variables contained within a single variable - Answers
collection
How do you refer to a specific array element? - Answers By enclosing its index number in
brackets after the array
What is used to execute specific programming code if the evaluation of a conditional
expression returns a truthy value? - Answers An if statement
Is the if statement a loop? - Answers No
What in a switch statement represents a specific value? - Answers A Case Label
What executes a specific set of statements depending on the value of an expression? - Answers
Switch statement
What is a special kind of statement that is used to end the execution of a switch statement? -
Answers A break statement
What restarts a loop with a new iteration? - Answers A continue statement
What is the difference between a break and a continue statement? - Answers Break is used to
end the execution of a loop. Continue restarts the loop with a new iteration.
What contains a set of data represented by a single variable name? - Answers An Array
What is a collection of variables contained within a single variable? - Answers An Array
what is the data stored inside array is called? - Answers An element
What compares the value of an expression to a value contained within a special statement
called a case label? - Answers Switch statement
What is the number for each element called? - Answers An index
what is a set of statements contained within a set of braces? - Answers Command block
What would you use to specify a new condition to test, if the first condition is false? - Answers
If/else statement
What is an if statement that includes an else clause? - Answers If/else statement
What executes a statement only once, and then repeats the execution as long as a given
conditional expression evaluates to a truthy value? - Answers A do/while statement
What repeats a statement or series of statements as long as a given conditional expression