🎴 Flashcard Mode
Java Programming Fundamentals
Card1 / 20
Mastered0
Review0
QuestionClick to flip
Overridden method is in child class and Overriding method is in parent class.
AnswerClick to flip back
A
False
💡 Explanation:
The terminology is: the overridden method is in the PARENT class (the original version being replaced), and the overriding method is in the CHILD class (the new version). The statement reverses this correctly, so False is the right answer. You're overriding the parent's method from the child.