Loops Quiz

Loops Quiz

9th - 12th Grade

16 Qs

quiz-placeholder

Similar activities

J808 LO1 and LO2 planning project keywords / terms

J808 LO1 and LO2 planning project keywords / terms

9th - 11th Grade

15 Qs

حاسب 2

حاسب 2

10th Grade

15 Qs

Cyber Security Homework 1

Cyber Security Homework 1

7th - 9th Grade

15 Qs

Kuis Dadakan ;)

Kuis Dadakan ;)

10th Grade - University

15 Qs

Binary

Binary

6th - 9th Grade

11 Qs

Python Syntax II

Python Syntax II

10th Grade

16 Qs

Quiz Informatika Bab 3 & 4

Quiz Informatika Bab 3 & 4

10th Grade

20 Qs

limbajul pascal

limbajul pascal

10th Grade

12 Qs

Loops Quiz

Loops Quiz

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Benjamin EnloeHS

Used 68+ times

FREE Resource

16 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

How many times will the following code print "Welcome to Java"?
int count = 0;
while (count < 10) {
 System.out.println("Welcome to Java");
 count++;
}
8
9
10
0

2.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

What is the output of the following code?
int x = 0;
while (x < 4) {
 x = x + 1;
}
System.out.println("x is " + x);
0
1
3
4

3.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

 Analyze the following code.
int count = 0;
while (count < 100) {
 // Point A
 System.out.println("Welcome to Java!");
 count++;
 // Point B
}
 // Point C
count < 100 is always true at Point B 
 count < 100 is always false at Point B
 count < 100 is always true at Point A  and count < 100 is always false at Point C
 count < 100 is always true at Point Coint C

4.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

How many times will the following code print "Welcome to Java"?
int count = 0;
do {
 System.out.println("Welcome to Java");
 count++;
} while (count < 10);
0
9
8
10

5.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which of the following loops prints "Welcome to Java" 10 times?
A:
for (int count = 1; count <= 10; count++) {
 System.out.println("Welcome to Java");
for (int count = 2; count < 10; count++) {
 System.out.println("Welcome to Java");
}
for (int count = 1; count < 10; count++) {
 System.out.println("Welcome to Java");
}
for (int count = 0; count <= 10; count++) {
 System.out.println("Welcome to Java");
}

6.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

The following loop displays _______________.
for (int i = 1; i <= 10; i++) {
 System.out.print(i + " ");
 i++;
}
1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 
1 3 5 7 9

7.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

What is the output for y?
int y = 0;
for (int i = 0; i<10; ++i) {
 y += i;
}
System.out.println(y);
1
36
45
9

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?

Discover more resources for Computers