Java Summative Assessment 2

Quiz
•
Computers
•
12th Grade
•
Easy
chrisbenedict sevilleno
Used 1+ times
FREE Resource
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of this code?
```java
int x = 5;
if (x > 0) {
System.out.println("Positive");
} else {
System.out.println("Negative");
}
Positive
Negative
Nothing
Error
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which symbol is used for the "not equal to" comparison in an if statement?
`!=`
`==`
`>`
`<>`
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will this code print?
```java
int age = 16;
if (age >= 18) {
System.out.println("Adult");
} else {
System.out.println("Minor");
}
```
Adult
Minor
Nothing
Error
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the correct syntax for an if-else statement?
`if condition { } else { }`
`if (condition) { } else { }`
`if [condition] { } else { }`
`if condition then { } else { }`
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will this code output?
```java
int num = 10;
if (num % 2 == 0) {
System.out.println("Even");
} else {
System.out.println("Odd");
}
Even
Odd
Nothing
Error
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does this code print?
```java
boolean isSunny = false;
if (isSunny) {
System.out.println("Go outside");
} else {
System.out.println("Stay inside");
}
Go outside
Stay inside
Nothing
Error
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is missing in this code to make it compile?
```java int x = 7;
if x > 5 {
System.out.println("Big");
}
```
Parentheses around the condition
Curly braces
Semicolon after the condition
A variable declaration
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Basics in Java

Quiz
•
9th - 12th Grade
20 questions
Java, part I

Quiz
•
11th Grade - University
20 questions
Functions Parameters Return

Quiz
•
9th - 12th Grade
20 questions
Functions Test

Quiz
•
9th - 12th Grade
18 questions
Java Wiederholung

Quiz
•
12th Grade
19 questions
Unit 5 - Two-Dimensional Arrays

Quiz
•
9th - 12th Grade
19 questions
TechfestQuiz 2024

Quiz
•
9th - 12th Grade
15 questions
Java Strings and Math Quiz

Quiz
•
12th Grade
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade