250+ TOP MCQs on Event Handling Basics and Answers

Java MCQs on basics of event handling in Java Programming Language.

1. Which of these packages contains all the classes and methods required for even handling in Java?
a) java.applet
b) java.awt
c) java.event
d) java.awt.event

Answer: d
Clarification: Most of the event to which an applet response is generated by a user. Hence they are in Abstract Window Kit package, java.awt.event.

2. What is an event in delegation event model used by Java programming language?
a) An event is an object that describes a state change in a source
b) An event is an object that describes a state change in processing
c) An event is an object that describes any change by the user and system
d) An event is a class used for defining object, to create events

Answer: a
Clarification: An event is an object that describes a state change in a source.

3. Which of these methods are used to register a keyboard event listener?
a) KeyListener()
b) addKistener()
c) addKeyListener()
d) eventKeyboardListener()

Answer: c
Clarification: None.

4. Which of these methods are used to register a mouse motion listener?
a) addMouse()
b) addMouseListener()
c) addMouseMotionListner()
d) eventMouseMotionListener()

Answer: c
Clarification: None.

5. What is a listener in context to event handling?
a) A listener is a variable that is notified when an event occurs
b) A listener is a object that is notified when an event occurs
c) A listener is a method that is notified when an event occurs
d) None of the mentioned

Answer: b
Clarification: A listener is a object that is notified when an event occurs. It has two major requirements first, it must have been registered with one or more sources to receive notification about specific event types, and secondly it must implement methods to receive and process these notifications.

6. Event class is defined in which of these libraries?
a) java.io
b) java.lang
c) java.net
d) java.util

Answer: d
Clarification: None.

7. Which of these methods can be used to determine the type of event?
a) getID()
b) getSource()
c) getEvent()
d) getEventObject()

Answer: a
Clarification: getID() can be used to determine the type of an event.

8. Which of these class is super class of all the events?
a) EventObject
b) EventClass
c) ActionEvent
d) ItemEvent

Answer: a
Clarification: EventObject class is a super class of all the events and is defined in java.util package.

9. Which of these events will be notified if scroll bar is manipulated?
a) ActionEvent
b) ComponentEvent
c) AdjustmentEvent
d) WindowEvent

Answer: c
Clarification: AdjustmentEvent is generated when a scroll bar is manipulated.

10. Which of these events will be generated if we close an applet’s window?
a) ActionEvent
b) ComponentEvent
c) AdjustmentEvent
d) WindowEvent

Answer: d
Clarification: WindowEvent is generated when a window is activated, closed, deactivated, deiconfied, iconfied, opened or quit.

Global Education & Learning Series – Java Programming Language.

Leave a Reply

Your email address will not be published. Required fields are marked *