logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Collection Classes Comments

  • 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?


  • Options
  • A. t.ContainsKey("Kerala");
  • B. t.HasValue("Kerala");
  • C. t.HasKey("Kerala");
  • D. t.ContainsState("Kerala");
  • E. t.ContainsValue("Kerala");

  • Correct Answer
  • t.ContainsKey("Kerala"); 


  • Collection Classes problems


    Search Results


    • 1. Which of the following is an ordered collection class?

      1. Map
      2. Stack
      3. Queue
      4. BitArray
      5. HashTable

    • Options
    • A. 1 only
    • B. 2 and 3 only
    • C. 4 and 5 only
    • D. All of the above
    • E. None of the above
    • Discuss
    • 2. In which of the following collections is the Input/Output index-based?

      1. Stack
      2. Queue
      3. BitArray
      4. ArrayList
      5. HashTable

    • Options
    • A. 1 and 2 only
    • B. 3 and 4 only
    • C. 5 only
    • D. 1, 2 and 5 only
    • E. All of the above
    • Discuss
    • 3. Which of the following is NOT an interface declared in System.Collections namespace?

    • Options
    • A. IComparer
    • B. IEnumerable
    • C. IEnumerator
    • D. IDictionaryComparer
    • E. IDictionaryEnumerator
    • Discuss
    • 4. 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?

    • Options
    • A. 4
    • B. 8
    • C. 16
    • D. 32
    • Discuss
    • 5. Which of the following statements are correct about the Collection Classes available in Framework Class Library?

    • Options
    • 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.
    • Discuss
    • 6. 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);

    • Options
    • 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);
    • Discuss
    • 7. 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);

    • Options
    • 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);
    • Discuss
    • 8. In a HashTable Key cannot be null, but Value can be.

    • Options
    • A. True
    • B. False
    • Discuss
    • 9. How many enumerators will exist if four threads are simultaneously working on an ArrayList object?

    • Options
    • A. 1
    • B. 3
    • C. 2
    • D. 4
    • E. Depends upon the Project Setting made in Visual Studio.NET.
    • Discuss
    • 10. Attributes can be applied to

      1. Method
      2. Class
      3. Assembly
      4. Namespace
      5. Enum

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


    Comments

    There are no comments.

Enter a new Comment