answersLogoWhite

0

Name the type of movement used as an input

____________________________.

User Avatar

Anonymous

5y ago

What else can I help you with?

Related Questions

What is the type of device that is used to pass information into the computer?

The generic name is "input device". Examples include keyboards, touch pads, mice, microphones.


How will you create username and password HTML tags?

<input type="text" /> That could be used for a username <input type="password" /> That could be used as a password.


Type of devices used as input as well as output devices?

A digital camera could be used as input as well as output devices.


What is the name for an input device used for gaming?

Usually a joystick is used as an input device for gaming purpose. A keyboard is also used for such purpose


What is the result if you use an input text in php?

$_POST is used see below for how. Firstly, in your form add a hidden feild: <input type="hidden" name="hasposted" value="true" /> Somewhere in your form. Then above the form add the following: <?php if($_POST['hasposted'] '1'){ $mycheckbox = true; } else { $mycheckbox = false; } echo '$mytext ' . $mytext . '<br />$mycheckbox '. $mycheckbox; } ?> <form method="POST" action="#"> <input type="hidden" name="hasposted" value="true" /> <label>Textbox: <input type="text" value="" name="mytext" /></label><br /> <label>Checkbox: <input type="checkbox" value="1" name="mycheckbox" /><br /> <br /> <input type="submit" value="Post" /> </form> I've posted links to W3Cschools with information on these and all other Form Elements.


Are symbols and pictures examples of input or output devices?

no but the key board used to type letters is an input device , the mouse used to select symbols and the scanner used to store digital information of pictures are input devices


What type of movement is used in carnival?

Samba


What is the primary type of input and output that is used in the power grid system?

energy


Where you are most likely to come across this type of input device?

Where are you most likely to come across this type of input device?


How can you put forms in your HTML browser?

Adding a form to an HTML web site is easy. All it requires is the use of the <form> tag with multiple <input> tags. A simple form would look like: <form name="input" action="html_form_action.asp" method="get"> Username: <input type="text" name="user" /> <input type="submit" value="Submit" /> </form> Other types of inputs that can be used include text boxes, password fields, radio buttons, and check boxes.


If a control has the programmer-defined name txtRadius what type of control is it?

The control with the programmer-defined name txtRadius is likely a text box or input field. This naming convention suggests that it is intended for user input, specifically for entering a value related to a radius, possibly in a graphical or mathematical context. Text boxes are commonly used in forms or applications to capture user input.


What is the tag for a checkable box in HTML?

A check box is used inside the <form> tag. You use an <input> tag to create a check box inside the form. This would look like: <input type="checkbox" name="vehicle" value="Car" />