IndiaBIX
IndiaBIX
Start typing & press "Enter" or "ESC" to close
  • Home
  • Jobs
  • Results
  • Current Affairs
  • GK
  • Online Test
  • HR Interview
  • BLOG

Collection Classes - General Questions

  • Home
  • Computer Science & Engineering
  • C# Programming Questions and Answers
  • Collection Classes - General Questions
1. 

Which of the following statements are correct about the Collection Classes available in Framework Class Library?

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.

Answer: Option E

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

2. 

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);

A. IEnumerable e; e = st.GetEnumerator(); while (e.MoveNext()) Console.WriteLine(e.Current);
B. IEnumerator e; e = st.GetEnumerable(); while (e.MoveNext()) Console.WriteLine(e.Current);
C. IEnumerator e; e = st.GetEnumerator(); while (e.MoveNext()) Console.WriteLine(e.Current);
D. IEnumerator e; e = Stack.GetEnumerator(); while (e.MoveNext()) Console.WriteLine(e.Current);

Answer: Option C

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

3. 

Which of the following statements are correct about a HashTable collection?

1 It is a keyed collection.

2 It is a ordered collection.

3 It is an indexed collection.

4 It implements a IDictionaryEnumerator interface in its inner class.

5 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.

A. 1 and 2 only
B. 1, 2 and 3 only
C. 4 and 5 only
D. 1, 4 and 5 only
E. All of the above

Answer: Option D

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

4. 

Which of the following is the correct way to find out the number of elements currently present in an ArrayList Collection called arr?

A. arr.Count
B. arr.GrowSize
C. arr.MaxIndex
D. arr.Capacity
E. arr.UpperBound

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

5. 

Which of the following is an ordered collection class?

1 Map

2 Stack

3 Queue

4 BitArray

5 HashTable

A. 1 only
B. 2 and 3 only
C. 4 and 5 only
D. All of the above
E. None of the above

Answer: Option B

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

6. 

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: Option B

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

7. 

Which of the following is NOT an interface declared in System.Collections namespace?

A. IComparer
B. IEnumerable
C. IEnumerator
D. IDictionaryComparer
E. IDictionaryEnumerator

Answer: Option D

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

8. 

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: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

  • 1
  • 2

Questions & Answers

Aptitude Chemical Engineering Civil Engineering Computer Science & Engineering Current Affairs Data Interpretation Electrical & Electronics Engineering Electronics & Communication Engineering General Knowledge Logical Reasoning Mechanical Engineering Non Verbal Reasoning Verbal Ability Verbal Reasoning

Interviews

HR Interview

Jobs

Sarkari Jobs

Results

Rojgar ResultSarkari Result

Admission

Admission 2023

Admit Card

Admit Card 2023

Answer Key

Answer Key 2023
copyright
Privacy Policy
© 2025 IndiaBIX. All Rights Reserved.

Report