TOPIC 5 QUIZ

TOPIC 5 QUIZ

1st Grade

8 Qs

quiz-placeholder

Similar activities

Tugas Pelatihan Scratch dan AI (Mgs.Ali Khameni)

Tugas Pelatihan Scratch dan AI (Mgs.Ali Khameni)

1st - 3rd Grade

5 Qs

РЭТ-19-2 ТПИ 4 практическая

РЭТ-19-2 ТПИ 4 практическая

1st Grade

10 Qs

Arduino Quiz

Arduino Quiz

1st Grade

11 Qs

App Builder - Data Modeling and Management

App Builder - Data Modeling and Management

1st Grade

10 Qs

Tugas Hari ke 3

Tugas Hari ke 3

KG - University

10 Qs

CI 3750 Quiz

CI 3750 Quiz

1st Grade

5 Qs

Ciclo - loop

Ciclo - loop

1st Grade

5 Qs

Java commands

Java commands

1st - 3rd Grade

7 Qs

TOPIC 5 QUIZ

TOPIC 5 QUIZ

Assessment

Quiz

Instructional Technology

1st Grade

Hard

Created by

Kate Mocorro

Used 5+ times

FREE Resource

8 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

10 sec • 2 pts

A loop that doesn’t end.

2.

FILL IN THE BLANK QUESTION

10 sec • 2 pts

Loops through a block of code as long as a specified condition is true:

3.

FILL IN THE BLANK QUESTION

30 sec • 5 pts

Fill in the missing code for a while loop: int alpha = 10;

while (alpha < 20) {

System.out.println(alpha);

4.

FILL IN THE BLANK QUESTION

20 sec • 2 pts

In the anatomy of the while loop , what is this called? : int power = 1;

5.

FILL IN THE BLANK QUESTION

20 sec • 2 pts

In the anatomy of the while loop , what is this called? : System.out.println("hello");

6.

FILL IN THE BLANK QUESTION

10 sec • 2 pts

Are handy because they save time, reduce errors, and they make code more readable.

7.

FILL IN THE BLANK QUESTION

10 sec • 2 pts

can execute a block of code as long as a specified condition is reached.

8.

FILL IN THE BLANK QUESTION

30 sec • 3 pts

What kind of loop is this ? : int i = 1;

while (i<= 5)

System.out.println(“Hello” +i);