Question
Stack st = new Stack();
st.Push("hello");
st.Push(8.2);
st.Push(5);
st.Push('b');
st.Push(true);
a.
Dissimilar elements like "hello", 8.2, 5 cannot be stored in the same Stack collection.
b.
Boolean values can never be stored in Stack collection.
c.
In the fourth call to Push(), we should write "b" in place of 'b'.
d.
This is a perfectly workable code.
Posted under C# programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Which of the following statements are correct about the C#.NET code snippet given below?
Similar Questions
Discover Related MCQs
Q. A HashTable t maintains a collection of names of states and capital city of each state. Which of the following is the correct way to find out whether "Kerala" state is present in this collection or not?
View solution
Q. Which of the following is NOT an interface declared in System.Collections namespace?
View solution
Q. Suppose value of the Capacity property of ArrayList Collection is set to 4. What will be the capacity of the Collection on adding fifth element to it?
View solution
Q. Which of the following is the correct way to find out the number of elements currently present in an ArrayList Collection called arr?
View solution
Q. Which of the following statements are correct about the Collection Classes available in Framework Class Library?
View solution
Q. Which among the following is not the ordered collection class?
View solution
Q. Which among the following is not an interface declared in System.Collection namespace?
View solution
Q. Which among the following is the correct way to find out the number of elements currently present in an ArrayListCollection called arr?
View solution
Q. Which is the correct statement about an ArrayList collection that implements the IEnumerable interface?
View solution
Q. Which statements among the following are correct about the Collection Classes available in Framework Class Library?
View solution
Q. Among the given collections which one is I/O index based?
View solution
Q. Which among the given statements are correct about the Stack collection?
View solution
Q. A HashTable t maintains a collection of names of states and capital city of each state.Which among the following finds out whether “New delhi” state is present in the collection or not?
View solution
Q. In which of the following collections is the I/O based on a key?
View solution
Q. The wrong statements about a HashTable collection are?
View solution
Q. Which of these classes contains only floating point functions?
View solution
Q. What is the value of double constant ‘E’ defined in Math class?
View solution
Q. Which among the given classes provides types of rounding functions?
View solution
Q. Which of these methods is a rounding function of Math class?
View solution
Q. Which of these method returns a smallest whole number greater than or equal to variable X?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C# programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!