What does this() mean in constructor chaining concept?
Answer options
A
Used for calling the current object of the same class.
B
Used for calling the parameterized constructor of the parent class.
C
Used for calling the no argument constructor of the same class.
D
Used for calling the current object of the parent class.
Correct answer: Used for calling the no argument constructor of the same class.
Explanation
Quick AnswerThe correct answer is Used for calling the no argument constructor of the same class. because it directly addresses the core logic of Java Programming.
Correct answer: Used for calling the no argument constructor of the same class..