Method overriding differs from method overloading in that overriding is typically resolved at:
Practice this question from Quiz: OOPS Revision Sheet, with options and an explanation.
Question
Method overriding differs from method overloading in that overriding is typically resolved at:
Option A
Compile-time
Option B — Correct answer
Runtime
Overriding involves runtime dispatch, where the appropriate method to call is determined based on the actual object type at runtime.
Option C
Link-time
Option D
Load-time