The question is
Which four describe the correct default values for array elements of the types indicated?
a)int =>0
b)
String =>"null"
c) Dog => null
d)char =>'\u0000'
e)float => 0.0f
f) boolean => true
The answers given are a,c,d,e
I have a question regarding the option e)
Arrays are always initialised with default values and float-point variables are defined as double by default..Is e) a right choice?