Operators and Expressions

Operators and Expressions

9th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

For Loops

For Loops

9th - 12th Grade

10 Qs

OTR10

OTR10

9th Grade

15 Qs

Code.org APCSA Unit

Code.org APCSA Unit

10th - 12th Grade

10 Qs

Unit 6

Unit 6

12th Grade

10 Qs

KUIZ ASK Tingkatan 2 Bab 3.1 (Bahagian 1)

KUIZ ASK Tingkatan 2 Bab 3.1 (Bahagian 1)

1st Grade - Professional Development

15 Qs

While Loops in Java

While Loops in Java

9th - 12th Grade

8 Qs

Java Scanner Quiz

Java Scanner Quiz

11th Grade

15 Qs

Java Arrays Basic

Java Arrays Basic

10th - 12th Grade

15 Qs

Operators and Expressions

Operators and Expressions

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Sandeep M

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following are arithmetic operators in Java?

2.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following are examples of relational operators in Java?

3.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following are examples of logical operators in Java?

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following operators can be used with strings in Java?

*

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is the value stored in x, y and z, after the following set of statements are executed:

y = 10;

z = 15;

x = ++y + z-- + y-- + z++;

x = 51, y = 10, z = 15

x = 50, y = 9, z = 15
x = 50, y = 10, z = 15
x = 49, y = 9, z = 16

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

In Java, consider the following code snippet:

int a = 10;

int b = 10;

int c = 5;

boolean x = (a < b) && (a >= c);

boolean y = (a != b) || (a > c);

Now, what are the values of x and y?

x : true, y : true

x : true, y : false

x : false, y : false

x : false, y : true

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The ternary operator in Java is a type of

Logical operator

Arithmetic operator

Relational operator

Conditional operator

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?