Exercise: Collection Classes
Questions for: 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?
A:
4
B:
8
C:
16
D:
32
Answer: B
No answer description is available. Let's discuss.
Which of the following is NOT an interface declared in System.Collections namespace?
A:
IComparer
B:
IEnumerable
C:
IEnumerator
D:
IDictionaryComparer
Answer: D
No answer description is available. Let's discuss.
Discuss About this Question.
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);
A:
IEnumerator e;
e = q.GetEnumerator();
while (e.MoveNext())
Console.WriteLine(e.Current);B:
IEnumerable e;
e = q.GetEnumerator();
while (e.MoveNext())
Console.WriteLine(e.Current);C:
IEnumerator e;
e = q.GetEnumerable();
while (e.MoveNext())
Console.WriteLine(e.Current);D:
IEnumerator e;
e = Queue.GetEnumerator();
while (e.MoveNext())
Console.WriteLine(e.Current);
Answer: A
No answer description is available. Let's discuss.
Discuss About this Question.
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?
A:
t.ContainsKey("Kerala");
B:
t.HasValue("Kerala");
C:
t.HasKey("Kerala");
D:
t.ContainsState("Kerala");
Answer: A
No answer description is available. Let's discuss.
Discuss About this Question.
Which of the following statements are correct about the Stack collection?
- It can be used for evaluation of expressions.
- All elements in the Stack collection can be accessed using an enumerator.
- It is used to maintain a FIFO list.
- All elements stored in a Stack collection must be of similar type.
- Top-most element of the Stack collection can be accessed using the Peek() method.
A:
1 and 2 only
B:
3 and 4 only
C:
1, 2 and 5 only
D:
All of the above
Answer: C
No answer description is available. Let's discuss.
Discuss About this Question.
Ad Slot (Above Pagination)
Discuss About this Question.