Topic 4.1 Video 2

Topic 4.1 Video 2

11th Grade

6 Qs

quiz-placeholder

Similar activities

Python with DataScience

Python with DataScience

7th Grade - University

10 Qs

for loops

for loops

10th - 12th Grade

8 Qs

Austin's Code.org Advance Class 2

Austin's Code.org Advance Class 2

11th - 12th Grade

9 Qs

Ch. 4 While loops, concatenation, shortcut operators

Ch. 4 While loops, concatenation, shortcut operators

11th Grade - University

7 Qs

Python Basic files

Python Basic files

10th - 12th Grade

10 Qs

W8-11

W8-11

10th - 11th Grade

10 Qs

Week #7 - Quest #2

Week #7 - Quest #2

8th Grade - University

3 Qs

Pseudocode WHILE Loops

Pseudocode WHILE Loops

10th - 12th Grade

10 Qs

Topic 4.1 Video 2

Topic 4.1 Video 2

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Myra Deister

Used 1+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times will this code execute?

while(true)

System.out.print("AP CSA ");

infinitely

Three times
Twice
Once

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an infinite loop?

An infinite loop is a loop that executes only once.
An infinite loop is a loop that stops executing after a certain number of iterations.
An infinite loop is a loop that executes a specific number of times.
An infinite loop is a loop that continues to execute indefinitely.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

From the video, what must be done to avoid an infinite loop?

Increase the loop counter indefinitely
Remove the loop entirely
Add a break statement inside the loop

Make sure there is a correct update inside of the loop.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is output by the code below?

 

int n = 0;

while(n<10)

{  

   n+=3;

}

System.out.print( n );

12

9

6

3

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is output by the code below?

 

int n=4, a=0;

while(n<13)

{  

   a += n;  

   n+=3;

}

System.out.print( a );

25

21

32

28

15

6.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

Upload a screenshot of the last screen of the video. Make sure your name is displayed and the title of the video. There is an example on the left.

Evaluate responses using AI:

OFF