II CSM A & B

II CSM A & B

University

15 Qs

quiz-placeholder

Similar activities

Java Control Flow statements

Java Control Flow statements

University

10 Qs

javaquizvivek

javaquizvivek

University

12 Qs

Java, part I

Java, part I

11th Grade - University

20 Qs

Java Programming Basics

Java Programming Basics

University

10 Qs

Java

Java

University

15 Qs

Java Quiz 1

Java Quiz 1

University

20 Qs

PROGRAMMING CAMP

PROGRAMMING CAMP

University

20 Qs

Java Programming-1

Java Programming-1

University

10 Qs

II CSM A & B

II CSM A & B

Assessment

Quiz

Computers

University

Easy

Created by

Raju Amireddy

Used 4+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

1.Which of the following is the correct assignment operator in Java?

A) =

B) ==

C) !=

D) >=

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

2.What will be the output of the following code?

int a = 5, b = 10; System.out.println(a + b * 2);

A) 30

B) 25

C) 20

D) Compilation Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

3. What will be the output of the following code?

int x = 15, y = 10;

System.out.println(x & y);

A) 0

B) 10

C) 15

D) 5

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

4.Which of the following is not a relational operator in Java?

A) >

B) <

C) !

D) <=

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

5.Which of the following is the left shift operator in Java?

A) >>

B) <<

C) >>>

D) <<<

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

6.What type of expression is this in Java?

System.out.println(5 > 3 ? "Yes" : "No");

A) Arithmetic expression

B) Relational expression

C) Conditional expression

D) Logical expression

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

7.What will be the output of the following code? java

for (int i = 0; i < 3; i++) {

if (i == 2) {

break;

}

System.out.println(i);

}

A) 0 1 2

B) 0 1

C) 2

D) 013

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?