REVIEW QUIZ FOR & WHILE LOOP

Quiz
•
Computers
•
10th Grade
•
Medium
Richard Avila
Used 24+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Java Syntax specifies a block of code to be executed when the condition is true.
if
else
else if
if else
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
It is a Java Syntax that selects one of many code blocks to execute. Most of the time, they coded as "cases."
Java Loop
Java Operator
Java Switch
Java Math
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
for (int x = 5; x < 10; x++) {
System.out.print(x);
}
5 6 7 8 9
5 6 7 8 9 10
5 4 3 2 1 0
4 5 6 7 8 9 10
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Java Syntax executes the block of code repeatedly until a specified condition is reached.
Strings
Operators
Arrays
Loops
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int i = 0;
while (i <= 5) {
System.out.println(i); i++;
}
What will be the output?
0 1 2 3 4
0 1 2 3 4 5
1 2 3 4 5
1 2 3 4
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int x = 20;
int y = 18;
if (x > y) {
System.out.println("x is greater than y");
}
Is the statement TRUE or FALSE?
TRUE
FALSE
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Java Syntax specifies a block of code to be executed when the condition is false.
else
if
else if
if else
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Python - Chpt 1 - Review

Quiz
•
9th - 12th Grade
12 questions
Loops

Quiz
•
9th - 12th Grade
10 questions
TLE ICT Q4 M3

Quiz
•
10th Grade
10 questions
Unit 1 Post Test: Basic Python

Quiz
•
9th - 12th Grade
11 questions
[Java] Review of User Input & Basic Arithmetic Operators

Quiz
•
9th - 12th Grade
10 questions
Java Conditions and If Statements

Quiz
•
10th Grade
10 questions
Программирование C#

Quiz
•
1st - 10th Grade
15 questions
Input Commands Quiz

Quiz
•
10th 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
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
10 questions
1.2 OSI & TCP IP Models Quiz

Quiz
•
10th Grade
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
20 questions
Hardware vs. Software Quiz

Quiz
•
7th - 10th 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