Question 722: Which four options describe the correct default values for array elements of the types indicated?int -> 0String -> "null"Dog -> nullchar -> '\u0000'float -> 0.0fboolean -> true
tcs
wipro
infosys
general
aptitude
language-fundamentals
java-programming
(1), (3), (4), (5) are the correct statements.(2) is wrong because the default value for aString(and any other object reference) isnull, with no quotes.(6) is wrong because the default value for boolean elements isfalse.