CC-101 QUIZ (CONDITIONAL STATEMENTS)

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/8

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No study sessions yet.

9 Terms

1
New cards

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.

2
New cards

if-structure

  • A type of selection structure that will execute only the statements or block of statements when the expression is true.

3
New cards

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.

4
New cards

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.

5
New cards

Nested-if-else

  • A type of conditional structure that have if-else statement inside another if-else statement.

6
New cards

Switch

  • A type of condition that is an alternative for the if else if ladder structure.

7
New cards

What keyword that woll invoke option in Switch statement?

  • Switch

8
New cards

What is the order of execution of the c++ if statement?

  • Top down

9
New cards

What do we call the part of the code that allow the use of the cout and cin commands.

  • Input-output stream