Suppose value of the Capacity property of ArrayList Collection is set toWhat will be the capacity of the Collection on adding fifth element to it?
Which of the following statements are correct about the Collection Classes available in Framework Class Library?
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);Which of the following is an ordered collection class?
Which of the following statements are correct about the Stack collection?
Which of the following statements are correct about an ArrayList collection that implements the IEnumerable interface?
Which of the following is the correct way to find out the number of elements currently present in an ArrayList Collection called arr?
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?
How many enumerators will exist if four threads are simultaneously working on an ArrayList object?
Which of the following statements are correct about a HashTable collection?
Which of the following is the correct way to access all elements of the Queue collection created using the C#.NET code snippet given below?
Queue q = new Queue();
q.Enqueue("Sachin");
q.Enqueue('A');
q.Enqueue(false);
q.Enqueue(38);
q.Enqueue(5.4);IEnumerator e;
e = q.GetEnumerator();
while (e.MoveNext())
Console.WriteLine(e.Current);IEnumerable e;
e = q.GetEnumerator();
while (e.MoveNext())
Console.WriteLine(e.Current);IEnumerator e;
e = q.GetEnumerable();
while (e.MoveNext())
Console.WriteLine(e.Current);IEnumerator e;
e = Queue.GetEnumerator();
while (e.MoveNext())
Console.WriteLine(e.Current);In which of the following collections is the Input/Output index-based?
Which of the following is the correct way to access all elements of the Stack collection created using the C#.NET code snippet given below?
Stack st = new Stack();
st.Push(11);
st.Push(22);
st.Push(-53);
st.Push(33);
st.Push(66);IEnumerable e;
e = st.GetEnumerator();
while (e.MoveNext())
Console.WriteLine(e.Current);IEnumerator e;
e = st.GetEnumerable();
while (e.MoveNext())
Console.WriteLine(e.Current);IEnumerator e;
e = st.GetEnumerator();
while (e.MoveNext())
Console.WriteLine(e.Current);IEnumerator e;
e = Stack.GetEnumerator();
while (e.MoveNext())
Console.WriteLine(e.Current);Which of the following is NOT an interface declared in System.Collections namespace?
In which of the following collections is the Input/Output based on a key?
In a HashTable Key cannot be null, but Value can be.