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? Answer: d 2. What is an event in delegation event model used by Java programming language? Answer: a 3. Which of these methods are used to register a keyboard event listener? Answer: c 4. Which of these methods are used to register a mouse motion listener? Answer: c 5. What is a listener in context to event handling? Answer: b 6. Event class is defined in which of these libraries? Answer: d 7. Which of these methods can be used to determine the type of event? Answer: a 8. Which of these class is super class of all the events? Answer: a 9. Which of these events will be notified if scroll bar is manipulated? Answer: c 10. Which of these events will be generated if we close an applet’s window? Answer: d Global Education & Learning Series – Java Programming Language.
a) java.applet
b) java.awt
c) java.event
d) java.awt.event
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.
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
Clarification: An event is an object that describes a state change in a source.
a) KeyListener()
b) addKistener()
c) addKeyListener()
d) eventKeyboardListener()
Clarification: None.
a) addMouse()
b) addMouseListener()
c) addMouseMotionListner()
d) eventMouseMotionListener()
Clarification: None.
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
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.
a) java.io
b) java.lang
c) java.net
d) java.util
Clarification: None.
a) getID()
b) getSource()
c) getEvent()
d) getEventObject()
Clarification: getID() can be used to determine the type of an event.
a) EventObject
b) EventClass
c) ActionEvent
d) ItemEvent
Clarification: EventObject class is a super class of all the events and is defined in java.util package.
a) ActionEvent
b) ComponentEvent
c) AdjustmentEvent
d) WindowEvent
Clarification: AdjustmentEvent is generated when a scroll bar is manipulated.
a) ActionEvent
b) ComponentEvent
c) AdjustmentEvent
d) WindowEvent
Clarification: WindowEvent is generated when a window is activated, closed, deactivated, deiconfied, iconfied, opened or quit.