Solved

Which Code Is the Equivalent of the Following Method Header

Question 56

Multiple Choice

Which code is the equivalent of the following method header?
public static <E> void abc(Stack<E> stack) { ...}
i.public static void abc(Stack<?> stack) { ...}
II.public static <Object> void abc (Stack<Object> stack) { ...}
III.public static void abc(Stack stack) { ...}


A) II only
B) I only
C) III only
D) I and III only

Correct Answer:

verifed

Verified

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

Related Questions