1.

What is the output of this program? import java.util.*; public class genericstack { Stack stk = new Stack (); public void push(E obj) { stk.push(obj); } public E pop() { E obj = stk.pop(); return obj; } } class Output { public static void main(String args[]) { genericstack gs = new genericstack(); gs.push(36); System.out.println(gs.pop()); } }

A. 0
B. 36
C. Runtime Error
D. Compilation Error
Answer» C. Runtime Error


Discussion

No Comment Found