Java Variables Quiz

Java Variables Quiz

11th Grade

10 Qs

quiz-placeholder

Similar activities

Variables Java

Variables Java

10th - 12th Grade

15 Qs

C#

C#

11th Grade

10 Qs

Unit 6 Arrays

Unit 6 Arrays

10th - 12th Grade

14 Qs

Variables and Data Types

Variables and Data Types

10th - 12th Grade

10 Qs

Comprog-October 11, 2022

Comprog-October 11, 2022

11th - 12th Grade

10 Qs

CodeHS Concepts of Programming JavaScript

CodeHS Concepts of Programming JavaScript

9th - 12th Grade

15 Qs

AP Computer Science A

AP Computer Science A

10th - 12th Grade

10 Qs

19W Final Exam - PLTW

19W Final Exam - PLTW

9th - 12th Grade

15 Qs

Java Variables Quiz

Java Variables Quiz

Assessment

Quiz

Computers

11th Grade

Hard

DOK Level 3: Strategic Thinking

Standards-aligned

Created by

Valerie Yarmesch

FREE Resource

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

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?