Solved

Consider the Following Code Snippet: Public Class Box<E>

Question 61

Multiple Choice

Consider the following code snippet: public class Box<E>
{
Private E data;
Public Box() { . . . }
Public void insert(E value) { . . . }
Public E getData() { . . . }
}
What will result from the following code?
Box<String> box = new Box<String>() ;
) . .
Box) insert("blue Box") ;
Double myDouble = (Double) box.getData() ;


A) compiler error
B) run-time error
C) correct, but unnecessary cast
D) correct, with necessary cast

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions