Multiple choice

The default value of char (Primitive Type) is

  1. u0000

  2. 0

  3. null

  4. 0.0f

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The default value for char primitive type in Java is '\u0000' (the null character). This is Unicode value 0. Option B (0) is an int, C (null) is only for reference types, and D (0.0f) is for float.