What is a container class? What are the types of container classes?
Answer / subham chaudhary
A container class is a class that is used to hold objects in memory or external storage. A container class acts as a generic holder. A container class has a predefined behavior and a well-known interface. A container class is a supporting class whose purpose is to hide the topology used for maintaining the list of objects in memory. When a container class contains a group of mixed objects, the container is called a heterogeneous container; when the container is holding a group of objects that are all the same, the container is called a homogeneous container.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is conditions when using boolean operators?
What are dynamic type checking?
What do you mean by internal linking and external linking in c++?
Explain mutable storage class specifier.
Is there any function that can skip certain number of characters present in the input stream?
What are the implicit member functions of class?
What do you mean by volatile and mutable keywords used in c++?
Explain what is oop?
What is unary operator? List out the different operators involved in the unary operator.
Is there any difference between int [] a and int a [] in c++?
How do you remove an element from a set in c++?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required