A statement that executes a block of code when a condition returns a Boolean value of true
What is conditional statement?
Provides a more elegant wat to test a variable for equality against a list of values.
What is a switch statement?
Repeatedly executes a block of code as long as a given condition is satisfied.
What is a while loop?
A clause that can be used for the IF statement
What is else clause?
In a switch statement, what do you call those values that are being checked?
In a switch statement, what is a case?
In a loop statement, what is the other term for the repetition of a process.
What is iteration?
These are if-else statements within another if-else statement
How does nested if-else statements works?
What statement are used to end the code block in a switch block?
What is a break statement?
Part of the looping statement that specifies that number of times that the program will repeat.
What is a counter?
A compound conditional statement that can be used to help a program to decide among three (3) or more actions.
What is if-else-if statement?
An optional case that is executed when none of the previous cases match.
Whait is default case?
Part of a looping statement that evaluates the value of the counter and the body of loop is executed if the condition is satisfied
What is a condition in a loop?
What kind of operators are used mostly to evaluate for conditional statements?
What is a Relational Operator?
What will happen to the switch block if default case is omitted?
Why default case is important?
A looping statement that guarantees to execute an iteration at least one(1) time.
What is a do-while loop?