Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
C# Programming
»
Collection Classes
Which of the following is the correct way to find out the number of elements currently present in an ArrayList Collection called arr?
arr.Count
arr.GrowSize
arr.MaxIndex
arr.Capacity
arr.UpperBound
Correct Answer:
arr.Count
← Previous Question
Next Question→
More Questions from
Collection Classes
In which of the following collections is the Input/Output based on a key? Map Stack BitArray HashTable SortedList
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 statements are correct about an ArrayList collection that implements the IEnumerable interface? The ArrayList class contains an inner class that implements the IEnumerator interface. An ArrayList Collection cannot be accessed simultaneously by different threads. The inner class of ArrayList can access ArrayList class's members. To access members of ArrayList from the inner class, it is necessary to pass ArrayList class's reference to it. Enumerator's of ArrayList Collection can manipulate the array.
Which of the following statements are correct about the Collection Classes available in Framework Class Library?
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 NOT an interface declared in System.Collections namespace?
In which of the following collections is the Input/Output index-based? Stack Queue BitArray ArrayList HashTable
Which of the following is an ordered collection class? Map Stack Queue BitArray HashTable
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 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);
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment
Join Discussion
Discussion & Comments