MCQOPTIONS
Bookmark
Saved Bookmarks
→
C Sharp Programming
→
Generics
→
How many enumerators will exist if four threads ar...
1.
How many enumerators will exist if four threads are simultaneously working on an ArrayList object?
A.
1
B.
3
C.
2
D.
4
Answer» E.
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
Which of the following is NOT an interface declared in System.Collections namespace?
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?
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 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.
Which of the following is NOT an interface declared in System.Collections namespace?
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?
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 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 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);
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply
Your experience on this site will be improved by allowing cookies. Read
Cookie Policy
Reject
Allow cookies