Programming Languages
C#
Objective
Mar 07, 2013
Which statements are correct about the C#.NET code snippet given below?
Stack st = new Stack();
st.Push("hello");
st.Push(8.2);
st.Push(5);
st.Push('b');
st.Push(true);
Detailed Explanation
Option D is the right answer.
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts