Computer Applications
What attribute is used for radio buttons ?
- radiobutton
- radiob
- radio
- optionbutton
HTML Advanced Features
1 Like
Answer
radio
Reason — Radio buttons are created in the following manner:
<form>
...
<input type = "radio" name = "Gender" value = "male"> Male <br>
<input type = "radio" name = "Gender" value = "female"> Female
<br>
...
</form>
The TYPE attribute is set to "radio".
Answered By
1 Like
Related Questions
Name the tags that can be used to insert audio and video files in a webpage.
What character is displayed on the password forms when the user inputs characters ?
- a random character.
- a '+' character.
- an asterisk
- a dot
What attributes are valid for textarea input ?
- just name
- name, columns and rows
- name and rows
- columns and rows
What attributes can be used with the SELECT form ?
- name and multiple
- name, multiple, rows and cols
- name, multiple and size
- multiple and size