48 solutions available
Question 1Create a form as given below by using different Form tags and attributes.(Hint : Also use Pre, Input, Select, Option tags for this)
Question 2Create a webpage that receives pizza orders through a web form as shown below :
Question 1(a)Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output...
Question 1(b)Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output...
Question 1(c)Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output...
Question 1(d)Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output...
Question 1(e)Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output...
Question 1(f)Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output...
Question 1(g)Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output...
Question 1(h)Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output...
Question 1(i)Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output...
Question 1Which of the following is/are not valid tag(s) for inserting audio files in an HTML page ?embedaudiosoundmusic
Question 2Which of the following is/are not valid tag(s) for inserting video files in an HTML pages?embedvideomovieVID
Question 3Which are the ways to add an audio file in a web page ?Linking via <A>Embedding via <EMBED>Embedding via <VIDEO>All of...
Question 4Which are the ways to add a video file in a web page ?Linking via <A>Embedding via <EMBED>Embedding via <VIDEO>All of...
Question 5Any tag allowed inside a <body> tag is allowed inside a <form> tag.TrueFalse
Question 6A form has two required attributes. These are :Method and ActionGet and PostStart and StopBegin and End
Question 7The <input> tag has several kinds of controls which are dictated by the ............... attribute.SRCvaluenametype
Question 8It is possible to set the width of a text by specifying a ............... attribute.limitsizevaluemaxlength
Question 9Which of the following tags will clear the contents of the form?<INPUT TYPE="CLEAR" VALUE="Clear the form"><INPUT TYPE="SUBMIT"...
Question 10Consider the following form control in a HTML form :x Male x Female Now choose the correct line of code for the above :<input type =...
Question 11A developer can restrict the values accepted in a text field by specifying a ............... attribute.sizemaxlengthvalueYou cannot...
Question 12You can mask the input typed into a text field by specifying an <input> tag as ............... .passwordsecureinvisiblehidden
Question 13Tag to create password field in HTML document :<password><input><pwd><pword>
Question 14HTML provides an attribute for the <input> tag that allows you to hide data with some designated character to make it...
Question 15Which of the following tag is used to define options in a drop-down selection list...
Question 16Which of the following restricts a user to one selection ?checkboxoptionboxradio buttondrop down list
Question 17You can pre-select a radio button by utilizing a ............... attribute.selectchoicecheckedmarked
Question 18If you want to display a list of 200 countries which control should you use:radio buttoncheckboxselect listslide widget
Question 1Name some popular audio and video formats.
Question 2Name the tags that can be used to insert audio and video files in a webpage.
Question 3What character is displayed on the password forms when the user inputs characters ?a random character.a '+' character.an asteriska dot
Question 4What attribute is used for radio buttons ?radiobuttonradiobradiooptionbutton
Question 5What attributes are valid for textarea input ?just namename, columns and rowsname and rowscolumns and rows
Question 6What attributes can be used with the SELECT form ?name and multiplename, multiple, rows and colsname, multiple and sizemultiple and size
Question 7Is the size attribute valid for the submit button ?YesNo
Question 8The two most important attributes of a form are :Id and actionClass and methodAction and methodmethod and id
Question 9A label's for attribute should match the input's ............... .typeidnamesize
Question 10Creates blank text field, but shows the text as asterisks.Type="text"Type="hidden"Type="password"Type="null"
Question 11Method attribute will always post data into the browser.TrueFalse
Question 12Checkbox buttons let users select one or more of a particular set of choices.TrueFalse
Question 13<input type="submit" name="submit" id="submit" /> creates a reset button.TrueFalse
Question 14What are forms ?
Question 15What do you understand by controls in forms ?
Question 16Name different control types supported by HTML forms.
Question 17Write the tags to define the following :(i) A text box(ii) A text area(iii) A radio button(iv) A check box(v) A Password box(vi) A pop up...
Question 18Write HTML code to produce following controls :Grade : A B C Subjects : English Maths...
Question 19Write HTML code to produce these controls :(i) a text box(ii) a text area with 10 rows and 30 columns(iii) A password text box(iv) A pop...