InterviewSolution
Saved Bookmarks
| 1. |
The Constructors with all the default arguments are similar as default constructors.(a) True(b) FalseI have been asked this question in homework.I'd like to ask this question from Constructors Overloading topic in division Default Arguments vs Overloading, Upcasting and Downcasting of Object Oriented Programming |
|
Answer» CORRECT choice is (a) True The explanation: The constructors with all the default ARGUMENTS are similar as the default constructors. Those can be used instead of the default constructors. So DEFINING the default CONSTRUCTOR is not mandatory. |
|