CHap3CPre

CHap3CPre

3rd Grade

5 Qs

quiz-placeholder

Similar activities

ALGORITHMS QUIZ (Pre)

ALGORITHMS QUIZ (Pre)

1st Grade - University

10 Qs

TIẾNG VIỆT + TOÁN 3

TIẾNG VIỆT + TOÁN 3

3rd Grade

10 Qs

evaluasi tema 3 subtema3

evaluasi tema 3 subtema3

3rd Grade

10 Qs

Toán Lớp 3

Toán Lớp 3

2nd - 3rd Grade

10 Qs

Chap5 Function

Chap5 Function

3rd Grade

6 Qs

Java commands

Java commands

1st - 3rd Grade

7 Qs

Nomina y sus Partes

Nomina y sus Partes

1st - 4th Grade

10 Qs

Hardest quiz 2022

Hardest quiz 2022

3rd Grade

7 Qs

CHap3CPre

CHap3CPre

Assessment

Quiz

Education

3rd Grade

Medium

Created by

LIM (PBU)

Used 3+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following command belong to Selection Control Statement.

switch

while

for

jump

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

State the command use in sentinel looping control.

while

for

switch

if else

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many time this loop repeat itseif?

for ( int x=0; x<4;) ;

2

3

4

5

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following NOT belong to jump control statement?

goto

break

switch

continue

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

State the output of the following program :

for (int x=1;X<=3;++X)

{ cout<<x;

} cout " The end";

12

123

12

The end

123

The end