CS304-Midterm
1 / 50
Which construct is the source for the creation of an object?
2 / 50
In object orientated programming, a class of objects cans _____________ properties from another class of objects
3 / 50
To convert from a user-defined class to a basic type, you would most likely use
4 / 50
The >= operator can be overloaded.
5 / 50
___________, which means if A declares B as its friend it does NOT mean that A can access private data of B. It only means that B can access all data of A
6 / 50
Which one is not keyword in C++?
7 / 50
The members of a class that can be accessed without creating the object of the class is called
8 / 50
Which operator can not be overloaded?
9 / 50
If there is a pointer p to objects of a base class, and it contains the address of an object of a derived class, and both classes contain a nonvirtual member function, ding(), then the statement p->ding(); will cause the version of ding() in the _____ class to be executed
10 / 50
11 / 50
The life of sub object is not dependant on the life of master class in ___________
12 / 50
Static variables act like a global variable in the context or scope of the class
13 / 50
_______ remain in memory even when all objects of a class have been destroyed
14 / 50
A generalization-specialization relation between classes are implemented using
15 / 50
What problem(s) may occur when we copy objects without using deep copy constructor?
16 / 50
Which one of the following features of OOP is used to derive a class from another?
17 / 50
Identify which of the following overloaded operator function’s declaration is appropriate for the given call? Rational_number_1 + 2.325 Where Rational_number_1 is an object of user defined class Rational_number
18 / 50
An employee working in an organization has 1.Name 2.Past experience 3.Age 4.Relatives 5.Hobbies in spare times Keeping in view the principle of abstraction, which of the above information the company needs to save as employee’s record?
19 / 50
If you define a vector v with the default constructor, and define another vector w with a one-argument constructor to a size of 11, and insert 3 elements into each of these vectors with push_back(), then the size() member function will return ______ for v and _____ for w
20 / 50
Friend functions are _____________ functions of a class
21 / 50
In order to free the memory occupied by the object, we use -------------
22 / 50
Which one of the following is not an object association?
23 / 50
A member function having the same name as that of a class and a ~ sign with it is called,
24 / 50
The >= operator can be overloaded
25 / 50
this pointers are not accessible for static member functions
26 / 50
_______ is a relationship
27 / 50
The ________ relationship indicates that an object contains other objects
28 / 50
29 / 50
__________ satisfy the condition of polymorphism
30 / 50
Inheritance is a way to
31 / 50
C++ compiler does not allow to dynamically allocate memory for objects
32 / 50
33 / 50
We capture the object attributes and behavior in Object Oriented programming using---------------
34 / 50
__________ provide the facility to access the data member
35 / 50
Assume a class C with objects obj1, obj2, and obj3. For the statement obj3 = obj1 - obj2 to work correctly, if the overloaded - operator must
36 / 50
Suppose that the Test class does not have an overloaded assignment operator. What happens when an assignment a=b; is given for two Test objects a and b?
37 / 50
For classes with common behavior, you can save effort by placing the common behavior in a __________
38 / 50
We can use "this" pointer in the constructor in the body and even in the initialization list of any class if we are careful,
39 / 50
Friend class and friend function can be used as an alternate to each other
40 / 50
The compiler won’t object if you overload the * operator to perform division
41 / 50
In OOP a class is an example of _____
42 / 50
43 / 50
The find() algorithm
44 / 50
The concept of derived classes is involved in,
45 / 50
A static member function cannot be declared
46 / 50
A class can be identified from a statement by -------------
47 / 50
template <> class Vector { } This is an example of partial specialization
48 / 50
The technique in which we visualize our programming problems according to real life’s problems is called ----------------
49 / 50
What a derived class can add?
50 / 50
Your score is
The average score is 0%
Restart quiz