Computer Applications

Case Study 1

Consider the code created by Snehal for the web page. Write the tag to complete Statement 1. Write the suitable option for the blank given in Statement 2. Sample Paper, Computer Applications Code 165 Kips Cyber Beans Solutions CBSE Class 10.

Consider the following code created by Snehal for the given web page:

<html>
<Head><Title> Form Elements<...............></Head> --- Statement 1
<............... bgcolor=" lightCyan ">  --- Statement 2
<FORM>
Login:
<INPUT Type= "Text" Name= "Name" Size= 30 Value=""> 
Password:
<INPUT Type= "..............." Name= "code" Size=30 Value="">  --- Statement 3
<P>Course interested in:</P>
<INPUT Type="..............." Name= "HTML" Value= "HTML"/> HTML   --- Statement 4a
<INPUT Type="..............." Name= "PYTHON" Value= "PYTHON" >PYTHON   --- Statement 4b
<INPUT Type="..............." Name= "C++" Value= "C++" >    --- Statement 4c
</Form>
<p> To upload your identity proof click <................>="www.kyc.com">KYC.com</a></p>
-    Statement 5
</body>
</html>

Based on the given information, answer the questions:

a. Write the tag to complete Statement 1.

b. Write the suitable option for the blank given in Statement 2.

c. Write the appropriate answer for the blank given in Statement 3, such that the input is masked while the user enters the form.

d. Write the appropriate answer for the blank given in Statement 4a, 4b, and 4c to display the input elements as shown in the web page.

e. Write the appropriate answer for the blank given in Statement 5 to show the link of the web page.

HTML Advanced Features

7 Likes

Answer

a. </title>

b. <BODY>

c. <INPUT Type= "PASSWORD" Name= "code" Size=30 Value="">

d.
<INPUT Type="CHECKBOX" Name= "HTML" Value= "HTML"/> HTML
<INPUT Type="CHECKBOX" Name= "PYTHON" Value= "PYTHON" >PYTHON
<INPUT Type="CHECKBOX" Name= "C++" Value= "C++" >

e. <p> To upload your identity proof click <a href="www.kyc.com">KYC.com</a></p>

Answered By

4 Likes


Related Questions