Java Variables Quiz

Java Variables Quiz

12th Grade

25 Qs

quiz-placeholder

Similar activities

Arrays

Arrays

9th - 12th Grade

20 Qs

Unit 1 Terms

Unit 1 Terms

12th Grade

22 Qs

SAINS KOMPUTER T4

SAINS KOMPUTER T4

12th Grade

20 Qs

C Programming

C Programming

12th Grade - University

25 Qs

Unit 1

Unit 1

9th - 12th Grade

30 Qs

Event Quiz

Event Quiz

11th Grade - Professional Development

20 Qs

Review of Java Vocabulary

Review of Java Vocabulary

11th - 12th Grade

23 Qs

Java Primitive Practice

Java Primitive Practice

12th Grade

20 Qs

Java Variables Quiz

Java Variables Quiz

Assessment

Quiz

Other

12th Grade

Hard

Created by

Trainer Mike

Used 1+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid way to declare a variable in Java?

int number = 10;

All of the above

var number = 10;

Integer number = 10;

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? public class Calculate { public static void main(String[] args) { int a; System.out.println(a); } }

0

Compilation Error

Runtime Error

Undefined Behavior

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true about variable names in Java?

Variable names can start with a number

Variable names can contain special characters like @ or #

Variable names are case-sensitive

Variable names can be a Java keyword

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the default value of a boolean instance variable in Java?

Compilation Error

null

false

true

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Java program? public class Main { static int x; public static void main(String[] args) { System.out.println(x); } }

Runtime Error

0

Compilation Error

Undefined Behavior

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to declare a constant variable in Java?

const int MAX = 100;

final int MAX = 100;

int const MAX = 100;

MAX = 100;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of this code? public class Example { int num = 5; public static void main(String[] args) { Example obj = new Example(); System.out.println(obj.num); } }

Undefined Behavior

5

Compilation Error

Runtime Error

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?