C# Programming :: Collection Classes
-
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?
-
Which of the following is an ordered collection class?
- Map
- Stack
- Queue
- BitArray
- HashTable
-
Which of the following is the correct way to find out the number of elements currently present in an ArrayList Collection called arr?
-
Which of the following statements are correct about a HashTable collection?
- It is a keyed collection.
- It is a ordered collection.
- It is an indexed collection.
- It implements a IDictionaryEnumerator interface in its inner class.
- The key - value pairs present in a HashTable can be accessed using the Keys and Values properties of the inner class that implements the IDictionaryEnumerator interface.
-
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);
-
Which of the following statements are correct about the Collection Classes available in Framework Class Library?
A.
|
B.
|
C.
|
D.
|
A.
Elements of a collection cannot be transmitted over a network.
|
B.
Elements stored in a collection can be retrieved but cannot be modified.
|
C.
It is not easy to adopt the existing Collection classes for newtype of objects.
|
D.
Elements stored in a collection can be modified only if allelements are of similar types.
|
E.
They use efficient algorithms to manage the collection, thereby improving the performance of the program.
|