Java Loops Quiz

Java Loops Quiz

University

53 Qs

quiz-placeholder

Similar activities

PRACTICE TEST- 10 - ROUND-1

PRACTICE TEST- 10 - ROUND-1

University

50 Qs

Project Associate fresher Software Development

Project Associate fresher Software Development

University

50 Qs

FUN CODING

FUN CODING

University

50 Qs

Midterm Exam - CP201

Midterm Exam - CP201

University

50 Qs

UTS Embedded System Programming

UTS Embedded System Programming

University

50 Qs

EB

EB

University

49 Qs

OOP Midterms

OOP Midterms

University

50 Qs

SAS | Week 01

SAS | Week 01

University

57 Qs

Java Loops Quiz

Java Loops Quiz

Assessment

Quiz

Other

University

Hard

Created by

mukilan selvaraj

Used 1+ times

FREE Resource

53 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a loop in Java?

for

while

loop

do-while

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the syntax of a for loop?

for(initialization; condition; increment) { }

for(condition; initialization; increment) { }

for(increment; condition; initialization) { }

for(initialization, increment, condition) { }

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? for(int i = 0; i 0) { i--; System.out.println(i); }

5 4 3 2 1 0

4 3 2 1 0

5 4 3 2 1

4 3 2 1

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A while loop executes:

At least once

Zero or more times

Only once

Infinite times

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is true about a do-while loop?

The loop executes only once

The condition is checked before execution

The loop executes at least once

It never executes

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output? int i = 1; do { System.out.print(i + " "); i++; } while (i < 4);

1 2 3

1 2 3 4

1 2

Infinite loop

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop is best when the number of iterations is unknown?

for

while

do-while

switch

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?