COMPROG:UNIT#4:SELECTION CONTROL STATEMENTS

COMPROG:UNIT#4:SELECTION CONTROL STATEMENTS

3rd Grade

8 Qs

quiz-placeholder

Similar activities

Measure Skills

Measure Skills

1st - 5th Grade

12 Qs

EcoNook

EcoNook

1st - 5th Grade

10 Qs

hot spots

hot spots

1st - 5th Grade

10 Qs

A Special Day - M-STEP Practice

A Special Day - M-STEP Practice

3rd Grade

12 Qs

CHAPTER 5-6

CHAPTER 5-6

1st - 5th Grade

11 Qs

genetics quiz2

genetics quiz2

1st - 5th Grade

10 Qs

Vocabulary Quiz unit 5 parker

Vocabulary Quiz unit 5 parker

1st - 5th Grade

8 Qs

COMPROG:UNIT#3:ITERATIVE CONTROL STATEMENTS

COMPROG:UNIT#3:ITERATIVE CONTROL STATEMENTS

3rd Grade

8 Qs

COMPROG:UNIT#4:SELECTION CONTROL STATEMENTS

COMPROG:UNIT#4:SELECTION CONTROL STATEMENTS

Assessment

Quiz

Others

3rd Grade

Hard

Created by

dasdqaw asdasesda

FREE Resource

8 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

are important elements in manipulating the sequence, flow and logic of a given program.

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

This control flow structure help in determining the correct logic that a program must possess. Selection(blank), Iterative(blank), and (blank) Statements are the 3 types of thing structure.

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

The 3 types of thing structure.

Selection(Conditional)

Iterative(Looping)

Case Statements

Array

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Decision making are needed when the program encounters the situation to choose a particular statement among many statements

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

In C, decision making can be performed with the following selection statements:

Nested if statements

if and only if statements

if else statements

if statements

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

if (condition)

{

statement1

statement2

}

else {

statement 3

statement 4

}

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

If (condition)

{

statements

}

8.

FILL IN THE BLANK QUESTION

1 min • 1 pt

if(condition){

statement1

}

else if{

statement2

}

else{

statement3

}