Which statement is correct about the C#.NET code snippet given below? Stack st = new Stack(); st.Push("Csharp"); st.Push(7.3); st.Push(8); st.Push('b'); st.Push(true);
Correct Answer: c) Perfectly workable code
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More C# MCQ Questions