Examveda
Examveda

What is the default value of an int variable in Java if it's not explicitly initialized?

A. 0

B. 1

C. -1

D. Null

Answer: Option A

Solution(By Examveda Team)

The correct answer is Option A: 0.

In Java, if an int variable is not explicitly initialized, it will be assigned the default value of 0.

This default value is used when no initial value is provided for an integer variable.

Option B, Option C, and Option D are not the default values for an uninitialized int variable in Java.

This Question Belongs to Java Program >> Data Types And Variables

Join The Discussion

Related Questions on Data Types and Variables