Match the following Questions & Answers
1
2
3
4
5
user can enter data
Enter No:
Define one line text input field
Enter No:
Define a checkbox
Enter No:
Define radio button
Enter No:
Defines a clickable button
Enter No:
Answers
REPORT MY ALL QUESTIONS I GIVE THANKS AND POINTS
user can enter data = keyboard
Define one line text input field -Text input fields allow keyboard input from the user. They are not as simple as they seem. They are frequently used in combination with other types of input controls in a form, but can be used on their own.
Define a checkbox-A checkbox is a GUI widget that permits the user to make a binary choice, i.e. a choice between one of two possible mutually exclusive options. For example, the user may have to answer 'yes' or 'no' on a simple yes/no question. Check boxes are shown as ☐ when unchecked, or ☑ or ☒ when checked.
Define radio button-Radio buttons are used when there is a list of two or more options that are mutually exclusive and the user must select exactly one choice. In other words, clicking a non-selected radio button will deselect whatever other button was previously selected in the list
Defines a clickable button-The <button> tag defines a clickable button. Inside a <button> element you can put text (and tags like <i> , <b> , <strong> , <br> , <img> , etc.). That is not possible with a button created with the <input> element