CBSE Class 10 Computer Applications Question 28 of 31

Solved 2024 Sample Question Paper CBSE Class 10 Computer Applications (165) — Question 1

Back to all questions
1
Question

Question 24(i)

Customer Analytics firm needs to design a survey form as shown below:

Customer Analytics firm needs to design a survey form. Write the suitable HTML code to design it. CBSE 2024 Computer Applications Code 165 Class 10 Sample Question Paper Solved.

Write the suitable HTML code to design it.

Answer
<HTML>
<BODY>
<FORM>
Name: 
<INPUT TYPE = "TEXT" NAME = "CANDIDATE NAME" SIZE = "30"> 
<BR>
City:
<BR>
<SELECT NAME = "CITY" SIZE = "3">
<OPTION VALUE = "New Delhi">
	New Delhi
</OPTION>
<OPTION VALUE = "Chennai">
	Chennai
</OPTION>
<OPTION VALUE = "Hyderabad">
	Hyderabad
</OPTION>
</SELECT>
<BR>
Hobby:
<BR>
<LABEL FOR = "CB1">Reading</LABEL>
<INPUT TYPE = "CHECKBOX" ID = "CB1" NAME = "C1" VALUE = "Reading">  
<LABEL FOR = "CB2">Writing</LABEL>
<INPUT TYPE = "CHECKBOX" ID = "CB2" NAME = "C2" VALUE = "Writing">  
<BR>
<LABEL FOR = "CB3">Singing</LABEL>
<INPUT TYPE = "CHECKBOX" ID = "CB3" NAME = "C3" VALUE = "Singing">  
<LABEL FOR = "CB4">Dancing</LABEL>
<INPUT TYPE = "CHECKBOX" ID = "CB4" NAME = "C4" VALUE = "Dancing">  
</FORM>
</BODY>
</HTML>