Week 16 - CP1

Quiz
•
Computers
•
12th Grade
•
Hard
Rafael Araujo
Used 2+ times
FREE Resource
9 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following loops print the numbers from 0 to 5?
int i=0;
while (i<5) {
System.out.println(i);
i++;}
int i=0;
while (i<7) {
System.out.println(i);
i++;}
int i=0;
while (i<6) {
System.out.println(i);
i++;}
int i=0;
while (i<=6) {
System.out.println(i);
i++;}
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Why do we use loops?
To never end programming
To show off what you know
To avoid repeating the same instruction more than one time
To make it more complex
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
When given:
int i=0;
while (i<5) {
System.out.println(i);
i++;}
Then i=0; means that
None
The first number to be printed is 0
It is the first natrual number
That it is a binary number
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
When given:
int i=0;
while (i<5) {
System.out.println(i);
i++;}
The condition (i<5) means that:
All of them
The loop will continue occurring until the value of "i" becomes greater than or equal to 5
The loop will continue occurring until the value of "i" becomes less than or equal to 5
The loop will continue occurring indefinitely
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
When given:
int i=0;
while (i<5) {
System.out.println(i);
i++;}
The instruction i++ means that:
I every iteration the value of "i" decreases by 2
I every iteration the value of "i" increases by 1
I every iteration the value of "i" increases by 2
I every iteration the value of "i" decreases by 1
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
When given:
for (int i=0; i<5; i++) {
System.out.println(i);}
Then i=0; means that
The last value to be printed is 0
The first value to be printed is 0
Every time I write a loop I need to make "i" equal to 0
All of them
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
When given:
for (int i=0; i<4; i++) {
System.out.println(i);}
The condition (i<4) means that:
All of them
The loop will continue occurring until the value of "i" becomes greater than or equal to 4
The loop will continue occurring until the value of "i" becomes less than or equal to 4
The loop will continue occurring indefinitely
8.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
When given:
for (int i=5; i>0; i--) {
System.out.println(i);}
The instruction i-- means that:
I every iteration the value of "i" decreases by 2
I every iteration the value of "i" increases by 1
I every iteration the value of "i" increases by 2
I every iteration the value of "i" decreases by 1
9.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following loops print the numbers from 0 to 5?
for (int i=0; i<=6; i++) {
System.out.println(i);
}
for (int i=0; i<6; i++) {
System.out.println(i);
}
for (int i=0; i<5; i++) {
System.out.println(i);
}
for (int i=0; i>5; i++) {
System.out.println(i);
}
Similar Resources on Wayground
14 questions
PBO KELAS 12

Quiz
•
12th Grade
10 questions
Introduction to Arrays

Quiz
•
KG - University
14 questions
Exploring Computer Science

Quiz
•
10th - 12th Grade
10 questions
Week 3 Arduino Basics Quiz

Quiz
•
7th - 12th Grade
10 questions
AP Computer Science-Quiz 2(G10)

Quiz
•
9th - 12th Grade
8 questions
Quiz P2

Quiz
•
9th Grade - University
8 questions
Robotics Quiz

Quiz
•
1st - 12th Grade
10 questions
Arrays

Quiz
•
10th - 12th Grade
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
10 questions
UPDATED FOREST Kindness 9-22

Lesson
•
9th - 12th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
US Constitution Quiz

Quiz
•
11th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade