Solved

Consider the Following Code Snippet

Question 60

Multiple Choice

Consider the following code snippet:
Public class LinkedList<E>
{
Private static E defaultValue; //Line 1
Public void add(E value, int n) { . . . } //Line 2
Private class Node { public String data; public Node next;) //Line 3
) . .
}
What is wrong with this code?


A) Cannot declare the variable defaultValue as static.
B) Cannot pass a generic type as an argument to a method as shown.
C) Cannot have an inner class in a generic class as shown.
D) Cannot declare the variable defaultValue as a generic data type.

Correct Answer:

verifed

Verified

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

Related Questions