Java: repetition control structure for & while
Quiz
•
Computers
•
10th - 12th Grade
•
Practice Problem
•
Hard
MAGENDRAN Moe
Used 37+ times
FREE Resource
Student preview

10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What should be written in the bracket?
int count = 0;
for (_______________){
count = count + 2;
}
System.out.print(count);
output : 6
int i = 1; i < 3; i=i+1
int i = 0; i <= 3; i=i+1
int i = 0; i < 3; i=i+1
int i = 0; i = 3; i=i+1
2.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
output : 1 2 3 4 5 6 7 8 9
int n = 10;
for(int i; i < n;i=i+1)
{
System.out.print("\t"+i);
}
int n = 10;
for(int i=1; i < n;i=i+1)
{
System.out.print("\t"+i);
}
int n = 9;
for(int i; i < n;i=i+1)
{
System.out.println("\t"+i);
}
int n = 9;
for(int i; i <= n;i=i+1)
{
System.out.println("\t"+i);
}
3.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
output :
10
9
8
7
6
for(int x=10;x>5;x--){
System.out.print(x"\n");
}
for(int x=0;x>10;x++){
System.out.print(x"\n");
}
for(int x=6;x>10;x--){
System.out.print(x"\n");
}
for(int x=10;x>=5;x--){
System.out.print(x"\n");
}
4.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
output :
0
2
4
6
8
10
12
14
int n = 15;
for(i= 0; i <= n; i+= 2)
{
System.out.print(i"\t");
}
int n = 0;
for(i= 0; i <= 15; i+= 2)
{
System.out.print(i"\n");
}
int n = 15;
for(i= 0; i <= n; i++)
{
System.out.print(i"\n");
}
int n = 15;
for(i= 0; i <= n; i+= 2)
{
System.out.print(i"\n");
}
5.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
int count = 0;
int j = 4;
while( j >= 1) {
count = count + j;
j=j-1;
}
System.out.println(count);
what is the output?
12
8
10
14
6.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
int i = 0;
while (i < 5) {
System.out.println(i);
i++;
}
what is the output?
0
1
2
3
4
1
2
3
4
5
0
1
2
3
4
5
5
7.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
for (int i = 0; i < 5; ) {
System.out.println("BRAVO")
}
what is the output for above statement?
print BRAVO four times
print BRAVO five times
print BRAVO one time
print BRAVO six times
Create a free account and access millions of resources
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?
Popular Resources on Wayground
25 questions
Multiplication Facts
Quiz
•
5th Grade
15 questions
4:3 Model Multiplication of Decimals by Whole Numbers
Quiz
•
5th Grade
10 questions
The Best Christmas Pageant Ever Chapters 1 & 2
Quiz
•
4th Grade
12 questions
Unit 4 Review Day
Quiz
•
3rd Grade
20 questions
Christmas Trivia
Quiz
•
6th - 8th Grade
18 questions
Kids Christmas Trivia
Quiz
•
KG - 5th Grade
14 questions
Christmas Trivia
Quiz
•
5th Grade
15 questions
Solving Equations with Variables on Both Sides Review
Quiz
•
8th Grade