Search Header Logo

Java Variables Quiz

Authored by Valerie Yarmesch

Computers

11th Grade

DOK Level 3: Strategic Thinking covered

Java Variables Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct declaration of a variable of type `int` in Java?

`int num = 5.5;`

`int num = 5;`

`int num = "5";`

`int num = '5';`

Tags

DOK Level 3: Strategic Thinking

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the following code snippet, what will be the output? ```java int a = 10; int b = 20; int c = a + b; System.out.println(c); ```

`10`

`20`

`30`

`40`

Tags

DOK Level 3: Strategic Thinking

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following primitive data types in Java has the largest range?

`byte`

`short`

`int`

`long`

Tags

DOK Level 3: Strategic Thinking

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following code: ```java double x = 5.0; int y = (int) x; ``` What is the value of `y` after the code is executed?

`5.0`

`5`

`0`

`Type mismatch error`

Tags

DOK Level 3: Strategic Thinking

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements is true about the `char` data type in Java?

`char` can store any Unicode character.

`char` can store only ASCII characters.

`char` can store integer values.

`char` can store floating-point numbers.

Tags

DOK Level 3: Strategic Thinking

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the result of the following code? ```java boolean flag = true; if (flag) { System.out.println("Flag is true"); } else { System.out.println("Flag is false"); } ```

`Flag is true`

`Flag is false`

`Compilation error`

`Runtime error`

Tags

DOK Level 3: Strategic Thinking

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to declare a variable of type `float` in Java?

`float num = 5.5;`

`float num = 5.5f;`

`float num = "5.5";`

`float num = '5.5';`

Tags

DOK Level 3: Strategic Thinking

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?