Java-Control Statements Part 1

Java-Control Statements Part 1

9th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Java If/else/ switch

Java If/else/ switch

9th - 12th Grade

20 Qs

Class X - Java 1

Class X - Java 1

10th Grade

15 Qs

P5.js Conditional Statements in Computer Science

P5.js Conditional Statements in Computer Science

9th - 12th Grade

15 Qs

Arithmetic Types Declare Initialize Relation Logical Ops

Arithmetic Types Declare Initialize Relation Logical Ops

9th Grade - University

16 Qs

Java Arrays Basic

Java Arrays Basic

10th - 12th Grade

15 Qs

Java switch/for/while

Java switch/for/while

9th - 12th Grade

15 Qs

Algoritmi Java

Algoritmi Java

11th Grade

20 Qs

Arrays

Arrays

9th - 12th Grade

16 Qs

Java-Control Statements Part 1

Java-Control Statements Part 1

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

vijayshree sundar

Used 30+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Boolean values are: 
True / False
Yes / No
Right / Wrong

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Java supports six relational operators that are used to make comparisons: =, <, >, <=, >=, =!
True
False

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Is this code segment is correct?
if(quizScore == 10)
System.out.println("Perfect score");
Yes
No

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A structure consisting of a sequence of statements enclosed in braces, functioning as if it were a single statement.
compound statement
conditional expression
condition
branch

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A ternary operator that has the syntax expression1 ? expression2 : expression3, which is equivalent to an if�else statement where expression1 is the condition and if true expression2 is executed, otherwise expression3 is executed.
conditional operator
conditional expression
equality operator
branch

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

WHICH TYPE OF DECISION STRUCTURE IS THIS?
if (x==10)
{
          if (y==20)
          {
                    System.out.println("Coordinates: 10, 20");
          }
}
Switch
If Else if 
If else (binary choice)
Nested If

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

WHAT DECISION STRUCTURE WORKS BEST IF YOU HAVE MORE THAN TWO POSSIBLE ANSWERS (MULTIPLE CHOICE) TO A QUESTION, AND THOSE ANSWERS CAN BE INTEGER OR CHARACTER BASED?
Nested If Statements
An If statement
A Switch statement
If else if statements

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?