
Java quiz 3 summer internship

Quiz
•
Other
•
University
•
Hard

Gnaneshwar Reddy
Used 1+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code?
```
int x = 5;
int y = 8;
if (x > y) {
x++;
} else if (x < y) {
y++;
}
System.out.println(x + "" + y);
```
A. 58
B. 59
C. 68
D. 69
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times will the following loop execute?
```
int i = 0;
while (i < 3) {
i++;
}
```
A. 2
B. 3
C. 4
D. Infinite
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code?
```
for (int i = 0; i < 5; i++) {
System.out.print(i + " ");
}
```
A. 0 1 2 3 4
B. 0 1 2 3 4 5
C. 1 2 3 4 5
D. None of the above
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the value of 'a' after the following code is executed?
```int a = 10;
for (int i = 0; i < 3; i++) {
a -= i;
}
```
A. 10
B. 7
C. 4
D. 6
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code?
```
int i = 1;
while (i <= 5) {
System.out.print(i + " ");
i += 2;
}
```
A. 1 3 5
B. 1 2 3 4 5
C. 1 3 5 7
D. 1 3 5 7 9
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code?
```
int x = 10;
if (x % 2 == 0) {
System.out.println("Even");
} else {
System.out.println("Odd");
}
```
A. Even
B. Odd
C. Compilation Error
D. None of the above
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times will "Hello" be printed by the following code?
```
for (int i = 0; i < 4; i++) {
System.out.println("Hello");
}
```
A. 3
B. 4
C. 5
D. Infinite
Create a free account and access millions of resources
Similar Resources on Wayground
10 questions
B4 - Two-dimensional Arrays

Quiz
•
University
5 questions
B4 - The if Statement

Quiz
•
University
15 questions
Barbie Movies

Quiz
•
KG - Professional Dev...
10 questions
Tokens Lexeme and Pattern

Quiz
•
University
14 questions
Quiz ArrayList

Quiz
•
University
10 questions
PYTHON set4

Quiz
•
University
10 questions
Java Single Array Quiz

Quiz
•
University
9 questions
Dart Final

Quiz
•
University
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
Discover more resources for Other
10 questions
Would you rather...

Quiz
•
KG - University
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)

Quiz
•
8th Grade - University
7 questions
Force and Motion

Interactive video
•
4th Grade - University
10 questions
The Constitution, the Articles, and Federalism Crash Course US History

Interactive video
•
11th Grade - University
7 questions
Figurative Language: Idioms, Similes, and Metaphors

Interactive video
•
4th Grade - University
20 questions
Levels of Measurements

Quiz
•
11th Grade - University
16 questions
Water Modeling Activity

Lesson
•
11th Grade - University
10 questions
ACT English prep

Quiz
•
9th Grade - University