Which of the following 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);
Answer: Option E
Explanation: