(A) hold objects of class employee
(B) store elements in a way that makes them quickly accessible
(C) compile c++ programs
(D) organize the way objects are stored in memory
Related Posts 👇
-
We can use “this” pointer in the constructor in the body and even in the initialization list of any class if we are careful.
(A) True
(B) False
-
In a de-queue, (chose the best option):
(A) Data can be quickly inserted or deleted at any arbitrary location
(B) Data can be inserted or deleted at any arbitrary location, but the process is relatively slow
(C) Data can not be quickly inserted or deleted at either end
(D) Data can be inserted or deleted at either end, but the process is relatively slow
-
Vectors contain contiguous elements stored as a?
(A) Variable
(B) Array
(C) Function
(D) Datatype
-
Which of the following is/are advantage[s] of generic programming?
(A) Reusability
(B) Writability
(C) Maintainability
(D) All of the above
-
Compiler performs __ type checking to diagnose type errors.
(A) Static
(B) Dynamic
(C) Bound
(D) Unbound
-
Template functions use __ than ordinary functions.
(A) Greater Memory
(B) Lesser Memory
(C) Equal Memory
(D) None of the above
-
The user must define the operation of the copy constructor.
(A) True
(B) False
-
Identify the correct way of declaring an object of user defined template class A for char type members?
(A) A< char > obj;
(B) A obj:
(C) A obj;
(D) Obj A;