0% found this document useful (0 votes)
74 views3 pages

Actionevent & Adjustmentevent Class

This document discusses the ActionEvent and AdjustmentEvent classes in Java. It provides 10 multiple choice questions about these classes, including: 1) Which event is generated when a button is pressed (ActionEvent) 2) What is an event in the Java delegation event model (A state change in a source) 3) Which method can be used to obtain the command name for an ActionEvent (getActionCommand())

Uploaded by

gupta_ssrkm2747
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
74 views3 pages

Actionevent & Adjustmentevent Class

This document discusses the ActionEvent and AdjustmentEvent classes in Java. It provides 10 multiple choice questions about these classes, including: 1) Which event is generated when a button is pressed (ActionEvent) 2) What is an event in the Java delegation event model (A state change in a source) 3) Which method can be used to obtain the command name for an ActionEvent (getActionCommand())

Uploaded by

gupta_ssrkm2747
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

ActionEvent & AdjustmentEvent Class

This section of our 1000+ Java MCQs focuses on ActionEvent & AdjustmentEvent class in Java
Programming Language.

1. Which of these events is generated when a button is pressed?


a) ActionEvent
b) KeyEvent
c) WindowEvent
d) AdjustmentEvent
View Answer

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.
View Answer

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

3. Which of these methods can be used to obtain the command name for invoking ActionEvent
object?
a) getCommand()
b) getActionCommand()
c) getActionEvent()
d) getActionEventCommand()
View Answer

Answer: b
Explanation: None.

4. Which of these are integer constants defined in ActionEvent class?


a) ALT_MASK
b) CTRL_MASK
c) SHIFT_MASK
d) All of the mentioned
View Answer

Answer: d
Explanation: Action event defines 4 integer constants ALT_MASK, CTRL_MASK,
SHIFT_MASK and ACTION_PERFORMED
5. Which of these methods can be used to know which key is pressed?
a) getKey()
b) getModifier()
c) getActionKey()
d) getActionEvent()
View Answer

Answer: b
Explanation: The getModifiers() methods returns a value that indicates which modifiers keys
(ALT, CTRL, META, SHIFT) were pressed when the event was generated.

6. Which of these events is generated by scroll bar?


a) ActionEvent
b) KeyEvent
c) WindowEvent
d) AdjustmentEvent
View Answer

Answer: d
Explanation: None.

7. Which of these methods can be used to determine the type of adjustment event?
a) getType()
b) getEventType()
c) getAdjustmentType()
d) getEventObjectType()
View Answer

Answer: c
Explanation: None.

8. Which of these methods can be used to know the degree of adjustment made by the user?
a) getValue()
b) getAdjustmentType()
c) getAdjustmentValue()
d) getAdjustmentAmount()
View Answer

Answer: a
Explanation: The amount of the adjustment can be obtained from the getvalue() method, it
returns an integer value corresponding to the amount of adjustment made.

9. Which of these events will be notified if scroll bar is manipulated?


a) ActionEvent
b) ComponentEvent
c) AdjustmentEvent
d) WindowEvent
View Answer

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

10. Which of these constant value will change when the button at the end of scroll bar was
clicked to increase its value?
a) BLOCK_DECREMENT
b) BLOCK_INCREMENT
c) UNIT_DECREMENT
d) UNIT_INCREMENT
View Answer

Answer: d
Explanation: UNIT_INCREMENT VALUE will change when the button at the end of scroll bar
was clicked to increase its value.

You might also like