IF, IF-ELSE, IF-ELSE-IF
SWITCH
LOOPS
100

A statement that executes a block of code when a condition returns a Boolean value of true

What is conditional statement?

100

Provides a more elegant wat to test a variable for equality against a list of values.

What is a switch statement?

100

Repeatedly executes a block of code as long as a given condition is satisfied.

What is a while loop?

200

A clause that can be used for the IF statement

What is else clause?

200

In a switch statement, what do you call those values that are being checked?

In a switch statement, what is a case?

200

In a loop statement, what is the other term for the repetition of a process.

What is iteration?

300

These are if-else statements within another if-else statement

How does nested if-else statements works?

300

What statement are used to end the code block in a switch block?

What is a break statement?

300

Part of the looping statement that specifies that number of times that the program will repeat.

What is a counter?

400

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?

400

An optional case that is executed when none of the previous cases match.

Whait is default case?

400

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?

500

What kind of operators are used mostly to evaluate for conditional statements?

What is a Relational Operator?

500

What will happen to the switch block if default case is omitted?

Why default case is important?

500

A looping statement that guarantees to execute an iteration at least one(1) time.

What is a do-while loop?