Radio buttons are used to __________
a) make interface look better
b) make coding easier
c) limit user input
d) fill unique information
Explanation: Radio buttons are used to limit user input that is only one option can be selected, from multiple options; whereas using checkbox we can select multiple options.
During runtime radio button can be selected, if a radio button is already selected or not by using the.….property.
a) Checked
b) Unchecked
c) On
d) Selected
Explanation: During runtime radio button can be selected, if a radio button is already selected or not by using the checked property. This property contains a Boolean value. If true the radio button is selected.
Radio button in an interface is labeled using………….property.
a) Text
b) Caption
c) Name
d) Label
Explanation: Radio button in an interface is labeled using text property. Each radio button should be labeled to make the user understand what it is doing, and this can be done by entering the label in the button’s text property.
A Radio button can be directly accessed from the keyboard using a………….
a) Access key
b) Shortcut key
c) Assigned key
d) Designated key
Explanation: A radio button can be directly accessed from a keyboard using an access key. The access key is a button which allows the user to click a button in the form by pressing the Alt key in combination with the set access key.
You use the………….tool to add a checkbox to a form.
a) Button
b) Radio
c) Option
d) Checkbox
Explanation: We use a checkbox tool to add a checkbox to a form. Like radio button checkbox can be checked or unchecked as in selected or deselected.
Checkbox are used to………….
a) make interface look better
b) make coding easier
c) limit user input
d) fill multiple information
Explanation: Checkbox are used to fill multiple information. Unlike radio button we can select more than one checkbox at a time.