Class 10 Computer Application Code 165
Unit 2 : HTML – 1 [FORMS]
Multiple Choice Questions [Unit 2 – HTML-I Set 17]
321. As you know Radio Buttons are used when only one option is required to be selected. Then why in the given figure, all radio buttons are selected. Identify error?
a. These are Checkboxes.
b. The value of name attribute is not same.
c. Sometimes Radio Buttons are allowed to select all.
d. None of these
322. The grouping of radio buttons are depends on _________ attribute.
a. type
b. name
c. checked
d. value
e. All of these
323. What will be the output of given code (just after execution, without making any changes in output window) ?
a.
b.
c.
d. None of these
324. _________ is used when we have many options available to be selected but only one or two will be selected.
a. Drop Down Box
b. Select Box
c. Combo Box
d. All of these
325. _________ and ________ pair of tag are used to create Drop Down Box / Select Box / Combo Box.
a. <INPUT>, <OPTION>
b. <SELECT>, <LIST>
c. <SELECT>, <OPTION>
d. All of these
326. Which of the following is the attributes of <SELECT> tag.
a. name
b. size
c. multiple
d. All of these
326. Which of the following is the attributes of <OPTION> tag.
a. value
b. selected
c. label
d. All of these
327. Identify the name of given HTML controls?
a. Select Box
b. Combo Box
c. Drop Down Box
d. All of these
328. Identify the name of given HTML controls?
a. Select Box
b. List Box
c. Drop Down Box
d. Both (a) and (b)
329. Which of the given command can not create a list box in HTML.
a. <SELECT name=”subject” size=3> <OPTION.. >…. </OPTION> … </SELECT>
b. <SELECT name=”subject” > <OPTION.. >…. </OPTION> … </SELECT>
c. <SELECT name=”subject” MULTIPLE> <OPTION.. >…. </OPTION> … </SELECT>
d. All of these
330. Which of the given command can create a control, looks like given in a figure.
a. <SELECT name=”subject” size=3> <OPTION.. >…. </OPTION> … </SELECT>
b. <SELECT name=”subject” > <OPTION.. >…. </OPTION> … </SELECT>
c. <SELECT name=”subject” MULTIPLE> <OPTION.. >…. </OPTION> … </SELECT>
d. All of these
331. Which of the given command can create a control, looks like given in a figure.
a. <SELECT name=”subject” size=3> <OPTION.. >…. </OPTION> … </SELECT>
b. <SELECT name=”subject” > <OPTION.. >…. </OPTION> … </SELECT>
c. <SELECT name=”subject” MULTIPLE> <OPTION.. >…. </OPTION> … </SELECT>
d. All of these
332. The _______ attribute of <OPTION> element, specifies that this option should be the initially selected value when the page loads.
a. value
b. checked
c. selected
d. All of these
333. The _______ attribute of <SELECT> element, allows a user to select multiple items from the menu.
a. size
b. multiple
c. many
d. None of these
334. <SELECT> tag is ___________ type of element.
a. emtpy
b. container
c. both, because closing tag is an optional
d. None of these
335. Match the following-
a. A – II, B – I, C – IV, D – III
b. A – III, B – IV, C – II, D – I
c. A – III, B – I, C – II, D – IV
d. A – II, B – I, C – III, D – IV
336. Match the following-
a. A – II, B – I, C – IV, D – III
b. A – III, B – IV, C – II, D – I
c. A – III, B – I, C – II, D – IV
d. A – II, B – I, C – III, D – IV
337. When a form is submitted a _______ button is pressed, the data entered or selected is sent for processing.
a. submit
b. reset
c. ok
d. cancel
338. _______ type of <INPUT> control can be hidden.
a. hide
b. hidden
c. text
d. password
339. _______ escape character is use to display space.
a.
b. &space;
c. ␣
d. None of these
340. The text enclosed between <TEXTAREA> and </TEXTAREA> is rendered as the ________ for the text area.
a. default text
b. label
c. message
d. None of these