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
13 questions
C++ Loops

Quiz
•
9th - 12th Grade
5 questions
AP Computer Science A Void

Quiz
•
8th - 12th Grade
10 questions
Recursive Functions in Python

Quiz
•
12th Grade
12 questions
Linguagem C parte II

Quiz
•
12th Grade
10 questions
Java: repetition control structure for & while

Quiz
•
10th - 12th Grade
12 questions
Java - arrays and String methods

Quiz
•
9th - 12th Grade
11 questions
Entradas ADC de tarjeta ESP32

Quiz
•
12th Grade
10 questions
Loops

Quiz
•
6th - 12th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

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

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade