what are the models available for event handling?
-
event-inheritance model
-
event-delegation model
-
Both a & b
-
Event-polymorhism model
C
Correct answer
Explanation
The event-inheritance model uses subclasses to handle events (older AWT approach), while the event-delegation model uses listeners where event sources delegate handling to separate listener objects (modern Java approach). Both models are valid event handling strategies.