Question # 1 of 10 ( Start time: 09 : 52 :
16 PM ) Total Marks : 1
_ _ _ _ _ _ _ _ _ _ Binding means that target
function for a call is selected at
compile time.
Select correct option :
Static
Dynamic
Automatic
None of given
Question # 2 of 10 ( Start time: 09 : 53 :
01 PM ) Total Marks : 1
In private inheritance derived class
pointer can be assigned to base class
pointer in ,
Select correct option :
Main function
In derived class member and friend
functions
In base class member and friend
functions
None of the given options
Question # 3 of 10 ( Start time: 09 : 53 :
44 PM ) Total Marks : 1
We can call base class assignment
operator in derived class user defined
assignment operator ,
Select correct option :
Implicitly
Explicitly
Using both of these options
Using none of these options
Question # 4 of 10 ( Start time: 09 : 55 :
02 PM ) Total Marks : 1
Static casting is,
Select correct option :
Implicit way of calling base class
functions from derived class
Explicit way of calling base class
functions from derived class
None of these
Both of these
Question # 5 of 10 ( Start time: 09 : 56 :
29 PM ) Total Marks : 1
Consider the code below , class
class1 { protected : void func 1 () ; };
class class2 : protected class1 { };
Function func1 of class1 is _ _ _ _ _ _ in
class2 ,
Select correct option :
public
protected
private
none of the given options
Question # 6 of 10 ( Start time: 09 : 57 :
43 PM ) Total Marks : 1
Consider the code below , class c 1 { };
class c2 : public c1 { }; class c 3 : public
c2 { }; Then c 3 is ,
Select correct option :
Direct base class of c1
Direct child class of c 1
Direct base class of c2
Direct child class of c 2
Question # 7 of 10 ( Start time: 09 : 58 :
45 PM ) Total Marks : 1
Which will be the Primary task or tasks
of generic programming ?
Select correct option :
Categorize the abstractions in a domain
into concepts
Implement generic algorithms based on
the concepts
Build concrete models of the concepts
All of given
Question # 8 of 10 ( Start time: 09 : 59 :
34 PM ) Total Marks : 1
Function overloading is done with
respect of ,
Select correct option :
A single class
A derived class
A base class
Both derived and base classes
Question # 9 of 10 ( Start time: 10 : 00 :
19 PM ) Total Marks : 1
Which statement will be true for
concrete class?
Select correct option :
it implements an virtual concept.
it can be instantiated
it cannot be instantiated
none of given
Question # 10 of 10 ( Start time : 10 :
01 :11 PM ) Total Marks: 1
Virtual functions allow you to
Select correct option :
create an array of type pointer - to-
base class that can hold pointers to
derived classes .
create functions that can never be
accessed .
group objects of different classes so
they can all be accessed by the same
function code .
use the same function call to execute
member functions of objects from
different classes .