🎴 Flashcard Mode

Java Fundamentals - Methods, Variables, and Memory Management

Card1 / 7
Mastered0
Review0
QuestionClick to flip

Overriding and Overloading is for ?

AnswerClick to flip back
A
Methods
💡 Explanation:

Overriding (runtime polymorphism through inheritance) and overloading (compile-time polymorphism with same name, different parameters) are concepts that apply specifically to methods in object-oriented programming. They are not applicable to variables or classes.

Change Mode