C++ Loops

C++ Loops

9th - 12th Grade

13 Qs

quiz-placeholder

Similar activities

Intro to Programming: data types, if/else, and loops

Intro to Programming: data types, if/else, and loops

8th - 12th Grade

15 Qs

Test-C++Tablouri unidiensionale-prof. Tudor V

Test-C++Tablouri unidiensionale-prof. Tudor V

10th Grade - University

9 Qs

Retos y destrezas

Retos y destrezas

10th Grade

12 Qs

Programming

Programming

1st - 10th Grade

10 Qs

Struktur Kontrol Perulangan, Array, dan Function (Bahasa C)

Struktur Kontrol Perulangan, Array, dan Function (Bahasa C)

10th Grade

15 Qs

Python

Python

9th Grade

13 Qs

REVIEW QUIZ FOR & WHILE LOOP

REVIEW QUIZ FOR & WHILE LOOP

10th Grade

10 Qs

Caligrafía | CM7

Caligrafía | CM7

1st - 10th Grade

11 Qs

C++ Loops

C++ Loops

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

ELIZABETH DIERKER

Used 58+ times

FREE Resource

13 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following loops will always run at least once?

while

do...while

for

froot

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How many times is "yoyo" printed when the following code executes?

for(int i = 1; i < 7; i += 2)

cout<<"yoyo";

0

2

3

4

infinitely many times

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How many times is "stop" printed when the following code executes?

int i =1;

while( i <= 9){

cout<<"stop";

i++;

}

0

9

10

11

infinitely many times

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the final value of sum?

0

20

12

30

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is an infinite loop?

for(int i = 0; i>0; i++);

while(false){cout<<"hi";}

for(int i =7; i<15; i--);

int x = 1;

while(x){break;}

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the final value of d?

int d;

for (d = 1; d < 567; d *= 10);

1

100

10

1000

10000

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

True or false? A continue statement stops a loop from executing.

True

False

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?