CuriousTab
Search
CuriousTab
Home
Aptitude
Computer
C Programming
C# Programming
C++ Programming
Database
Java Programming
Networking
Engineering
Biochemical Engineering
Biochemistry
Biotechnology
Chemical Engineering
Civil Engineering
Computer Science
Digital Electronics
Electrical Engineering
Electronics
Electronics and Communication Engineering
Mechanical Engineering
Microbiology
Technical Drawing
GK
Current Affairs
General Knowledge
Reasoning
Data Interpretation
Logical Reasoning
Non Verbal Reasoning
Verbal Ability
Verbal Reasoning
Exams
AIEEE
Bank Exams
CAT
GATE
IIT JEE
TOEFL
Jobs
Analyst
Bank PO
Database Administrator
IT Trainer
Network Engineer
Project Manager
Software Architect
Discussion
Home
‣
C++ Programming
‣
Constructors and Destructors
Comments
Question
Destructor has the same name as the constructor and it is preceded by ______ .
Options
A. !
B. ?
C. ~
D. $
Correct Answer
~
Constructors and Destructors problems
Search Results
1. Which of the following are NOT provided by the compiler by default?
Options
A. Zero-argument Constructor
B. Destructor
C. Copy Constructor
D. Copy Destructor
Show Answer
Scratch Pad
Discuss
Correct Answer: Copy Destructor
2. Which of the following cannot be declared as virtual?
Options
A. Constructor
B. Destructor
C. Data Members
D. Both A and C
Show Answer
Scratch Pad
Discuss
Correct Answer: Both A and C
3. Which of the following gets called when an object goes out of scope?
Options
A. constructor
B. destructor
C. main
D. virtual function
Show Answer
Scratch Pad
Discuss
Correct Answer: destructor
4. To ensure that every object in the array receives a destructor call, always delete memory allocated as an array with operator __________ .
Options
A. destructor
B. delete
C. delete[]
D. kill[]
E. free[]
Show Answer
Scratch Pad
Discuss
Correct Answer: delete[]
5. How many default constructors per class are possible?
Options
A. Only one
B. Two
C. Three
D. Unlimited
Show Answer
Scratch Pad
Discuss
Correct Answer: Only one
6. If the programmer does not explicitly provide a destructor, then which of the following creates an empty destructor?
Options
A. Preprocessor
B. Compiler
C. Linker
D.
main()
function
Show Answer
Scratch Pad
Discuss
Correct Answer: Compiler
7. When are the Global objects destroyed?
Options
A. When the control comes out of the block in which they are being used.
B. When the program terminates.
C. When the control comes out of the function in which they are being used.
D. As soon as local objects die.
Show Answer
Scratch Pad
Discuss
Correct Answer: When the program terminates.
8. Which of the following statement is correct?
Options
A. Constructor has the same name as that of the class.
B. Destructor has the same name as that of the class with a tilde symbol at the beginning.
C. Both A and B.
D. Destructor has the same name as the first member function of the class.
Show Answer
Scratch Pad
Discuss
Correct Answer: Both A and B.
9. Which of the following implicitly creates a default constructor when the programmer does not explicitly define at least one constructor for a class?
Options
A. Preprocessor
B. Linker
C. Loader
D. Compiler
Show Answer
Scratch Pad
Discuss
Correct Answer: Compiler
10. Which of the following never requires any arguments?
Options
A. Member function
B. Friend function
C. Default constructor
D.
const
function
Show Answer
Scratch Pad
Discuss
Correct Answer: Default constructor
Comments
There are no comments.
Enter a new Comment
Save
More in C++ Programming:
Constructors and Destructors
Functions
Objects and Classes
OOPS Concepts
References