image not found

Oops! That page can't be found.


Directions to Solve

Which of phrases given below each sentence should replace the phrase printed in bold type to make the grammatically correct? If the sentence is correct as it is, mark 'E' as the answer.

Q1: The world has seen small real attempt at population and resource planning.

A a few

B few

C little

D less

E No correction required

Q2: Is there any difference in the following declarations?
int myfun(int arr[]);
int myfun(arr[20]);

A No

B Yes

Q3: Which of the following statement is correct?

A Destructor destroys only float data members of the object.

B Destructor destroys only pointer data members of the object.

C Destructor destroys only integer data members of the object.

D Destructor destroys the complete object.

Q4: __________ used to make a copy of one class object from another class object of the same class type.

A copy constructor

B constructor

C default constructor

D destructor

Q5: Constructors __________ to allow different approaches of object construction.

A cannot overloaded

B can be nested

C can be called

D can be overloaded

Q6: Which of the following statement is correct?

A A destructor has a different name than the class in which it is present.

B A destructor can be overloaded.

C A destructor always returns an integer.

D A destructor has the same name as the class in which it is present.

Q7: Which of the following cannot be declared as virtual?

A Constructor

B Destructor

C Data Members

D Both A and C

Q8: If the copy constructor receives its arguments by value, the copy constructor would

A work without any problem

B call one-argument constructor of the class

C call zero-argument constructor

D call itself recursively

Q9: Which of the following are NOT provided by the compiler by default?

A Destructor

B Copy Destructor

C Copy Constructor

D Zero-argument Constructor

Q10: It is a __________ error to pass arguments to a destructor.

A syntax

B virtual

C linker

D logical