1/8
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No study sessions yet.
Decision-making
It is the process of making a decision abouth which part of the code should be executed or not based on some condition.
if-structure
A type of selection structure that will execute only the statements or block of statements when the expression is true.
if-else
A type of selection structure that will execute a statement or block of statements when the condition evaluates to true or another series of instructions when the comparison is false.
if-else-if ladder
A type of conditions with multiple options that when the if statement's condition is true will be executed and the rest is bypassed.
Nested-if-else
A type of conditional structure that have if-else statement inside another if-else statement.
Switch
A type of condition that is an alternative for the if else if ladder structure.
What keyword that woll invoke option in Switch statement?
Switch
What is the order of execution of the c++ if statement?
Top down
What do we call the part of the code that allow the use of the cout and cin commands.
Input-output stream