Multiple choice technology programming languages If not assigned a value, a variable of type char has the following default value: '\uffff' '\u0001' '\u0000' " " (space) Reveal answer Fill a bubble to check yourself C Correct answer Explanation In Java, uninitialized char variables have default value '\u0000' (the null character). This is different from '\uffff' which is the max char value, or space character. The default ensures consistent behavior for object fields.