Search Header Logo

Java Programming Quiz

Authored by LAKSHMI NARAYANA INAMPUDI

Computers

University

Used 1+ times

Java Programming Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code?

int a = 5, b = 2;

System.out.println(a + b * 2);

14

9

10

7

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be printed?

int x = 10;

System.out.println(++x);

10

11

9

Error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Avani is trying to name her new Java class for a school project. She wants to choose a name that follows the rules of valid identifiers in Java.

Which of the following names is NOT a valid identifier for her class?

_student

123name

name123

$total

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output?

int x = 5;

int y = 10;

System.out.println(x > y ? x : y);

10

5

true

false

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Aisha is learning programming and comes across several terms.

She needs to identify which of the following is NOT a Java keyword.

this

new

integer

class

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of this while loop?

int i = 1;

while(i < 4)

{

System.out.print(i + " ");

i++;

}

0 1 2 3

1 2 3

1 2 3 4

Infinite loop

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

During a coding workshop, Tisha is learning about escape sequences in programming.

She comes across a question about which escape sequence represents a newline.

Can you help her identify the correct one?

\n

\t

\r

\b

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers