12/16 ET

12/16 ET

9th Grade

8 Qs

quiz-placeholder

Similar activities

Conditional Review Quizizz

Conditional Review Quizizz

Z'yon Computer Science

Z'yon Computer Science

if-else-if and Logical Operators

if-else-if and Logical Operators

Unit 3 Booleans and Conditional Statements

Unit 3 Booleans and Conditional Statements

Conditional Operators

Conditional Operators

CS A 3.1 Boolean Expressions

CS A 3.1 Boolean Expressions

1.2-1.3 Quick Review

1.2-1.3 Quick Review

12/16 ET

12/16 ET

Assessment

Quiz

Computers

9th Grade

Medium

Created by

Gabrielle Acosta

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int x = 2, y = 2;

System.out.print(x == y);

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int a = 3, b = 1;

System.out.print(b >= a);

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does || mean?

and

or

yes

no

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does && mean?

and

or

yes

no

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code segment?


System.out.print( 2 < 3 && 2 > -3 );

true

false

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code segment?


int y = 3;

System.out.print( y > 4 && y < 7 );

true

false

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code segment?


int y = 3;

System.out.print( y > 4 || y < 7 );

true

false

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code segment?


int x = 83, y = 16;

System.out.print( x > y || y > x );

true

false

Discover more resources for Computers