LOOP

LOOP

11th Grade

10 Qs

quiz-placeholder

Similar activities

Praktik Lintas Bidang (Permasalahan Knapsack)

Praktik Lintas Bidang (Permasalahan Knapsack)

11th Grade

10 Qs

Quiz ip address

Quiz ip address

11th Grade

15 Qs

Test shkollor, 7

Test shkollor, 7

7th Grade - University

10 Qs

BÀI 19. THỰC HÀNH TẠO LẬP CƠ SỞ DỮ LIỆU VÀ CÁC BẢNG

BÀI 19. THỰC HÀNH TẠO LẬP CƠ SỞ DỮ LIỆU VÀ CÁC BẢNG

11th Grade

10 Qs

Exploring Computer Network Models

Exploring Computer Network Models

10th Grade - University

13 Qs

Current State of ICT Technologies

Current State of ICT Technologies

11th Grade

15 Qs

7 segmentos

7 segmentos

11th Grade

10 Qs

Karışık Algoritma 9. sınıf

Karışık Algoritma 9. sınıf

9th Grade - University

15 Qs

LOOP

LOOP

Assessment

Quiz

Information Technology (IT)

11th Grade

Hard

Created by

Magiel Boncayao

Used 1+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop is guaranteed to execute at least once?

A) for loop

B) while loop

C) do-while loop

Enhanced for loop

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following WHILE loop?

int x = 5;

while (x > 0){

  System.out.print(x + " ");

  x--

}

A) 5 4 3 2 1 0

B)  5 4 3 2 1

C) 4 3 2 1 0

D) Infinite loop

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the main difference between a while loop and a do-while loop?

  • A) while checks the condition before execution; do-while checks after.

  • B) while runs at least once; do-while may not run at all.

  • C) do-while is faster than while.

  • D) There is no difference.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times will this loop execute?

int i = 5; while (i < 5) { System.out.println("Hello"); i++; }

  • A) 0

  • B) 1

  • C) 5

  • D) Infinite

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens if the condition in a while loop is always true?

  • A) The loop runs once.

  • B) The loop runs a finite number of times.

  • C) The loop becomes infinite.

  • D) Compilation error.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this code?

int x = 1; do { System.out.print(x + " "); x++; } while (x <= 3);

  • A) 1 2 3

  • B) 1 2

  • C) 2 3

  • D) Infinite loop

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop is this an example of?

int i = 0; do { System.out.println(i); i++; } while (i < 5);

  • A) for loop

B) do-while loop

C) while loop

  • D) if-else loop

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?