Saved Bookmarks
| 1. |
a. Give the output if user selected second radio button if (jRadioButton1.isSelected()) jTextField1.setText("hello"); else if (jRadioButton2.isSelected()) jTextField1.setText("hi"); else if (jRadioButton3.isSelected()) jTextField1.setText("namaste"); else jTextField1.setText("Not Selected"); b. Name the property that sets action to be performed when the user attempts to close the form |
|
Answer» a. hi b. default Close Operation |
|