Solved

Look at the Following Code

Question 1

Multiple Choice

Look at the following code. Integer myNumber = new Integer(5) ;
Int var = myNumber;
Which of the following is true about the second statement?


A) It results in an error because you cannot assign a wrapper class object to a primitive variable.
B) The statement performs autoboxing.
C) The statement performs unboxing.
D) The statement performs unwrapping.

Correct Answer:

verifed

Verified

Related Questions