The GUI event with which the user interacts is the Select on
The GUI event with which the user interacts is the. Select one: event container. event raiser. event effector. event source. Which of the following statements for a JTextField are true? Select all that apply. Select one or more: Can be used to display editable text. Enables users to enter data from the keyboard. Can be used to display uneditable text. Displays a list of fields. Which of the following statements makes the text in a JTextField uneditable? Select one: textField.setUneditable(false); textField.setEditable(true); textField.setUneditable(true); textFieldsetEditable(false); Which method determines if a JCheckBox is selected? Select one: isSelected getSelected None of the above selected The logical relationship between radio buttons is maintained by objects of what class? Select one: RadioButtonGroup Group ButtonGroup MutualExclusionGroup
Solution
Q6: event source is the GUI event with which the user interacts. I.e. option D
Q7: JTextField can be used to display uneditable text.
Q8: JTextField.setEditable(false). Hence the ans is last option.
Q9: The command isSelected is used to get the current state of the checkbox. Hehe the answer is option a.
