199k views
4 votes
What symbol following a menu command lets you know that a dialog box will be displayed? an arrow a check mark an ellipse a radio button

User GANI
by
8.1k points

2 Answers

3 votes
I believe its the radio button
User Mayr Technologies
by
8.2k points
3 votes

Answer:

radio button

Step-by-step explanation:

Several <INPUT> tags with the type = "radio" attribute allow us to select an option from those available. Radio buttons in the same group have the same value in the name attribute.

Syntax:

<INPUT TYPE = "radio" NAME = "variable" VALUE = "xxx"> description

Attributes:

TYPE - type of field to be used;

NAME - variable that will store the value of the selected option;

description - text that appears next to the radio button.

User DynamicScope
by
8.0k points