Loops

Loops

10th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Python

Python

10th Grade

8 Qs

Do Now - Retrieval - Programming and Data Structures

Do Now - Retrieval - Programming and Data Structures

11th Grade

11 Qs

Hari 3 - Kuis Coding & Pengenalan AI

Hari 3 - Kuis Coding & Pengenalan AI

11th Grade

10 Qs

Hari 3  - Kuis Coding & Perkenalan AI

Hari 3 - Kuis Coding & Perkenalan AI

12th Grade

10 Qs

Quiz 13 - For Loops

Quiz 13 - For Loops

11th Grade

10 Qs

KUIS SCRATCH

KUIS SCRATCH

1st - 10th Grade

8 Qs

Python Vocab Matching

Python Vocab Matching

9th - 12th Grade

7 Qs

Vocabulary Quizz

Vocabulary Quizz

5th - 12th Grade

9 Qs

Loops

Loops

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Used 16+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A do ... while loop is a:
conditional loop
unconditional loop

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A for loop is an example of a:
conditional loop
unconditional loop

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why is boolean logic required for conditional loops?
It enables the condition to be expressed
it keeps the loop going for ever

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When will this loop end?
for (int i =0; i < 50; i++){
System.out.println("hello");
}
after 50 repetitions
after 1 repetition
when a condition is met
after 100 repetitions

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When will this loop end?
do {
  system.out.print("hello");
  i = i + 1;
  } while (i<20);
when i = 21
when i = 10
when the condition is not met
when i = 50

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

You can have an IF without and else but not an else without an IF
True
False