Java-Control Statements Part 1

Java-Control Statements Part 1

9th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Python basics

Python basics

9th - 12th Grade

16 Qs

Elementele de bază ale limbajului C++

Elementele de bază ale limbajului C++

10th Grade

17 Qs

Java Control Flow Statements

Java Control Flow Statements

9th - 12th Grade

20 Qs

C++ kvizić

C++ kvizić

10th Grade

17 Qs

Dasar Pemrograman 3

Dasar Pemrograman 3

10th - 11th Grade

20 Qs

Python Basics (CodeHS)

Python Basics (CodeHS)

7th - 12th Grade

20 Qs

Java Conditional Constructs

Java Conditional Constructs

9th - 10th Grade

20 Qs

Intro to Java Loops

Intro to Java Loops

9th - 12th Grade

15 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?