Plus Two Computer Application Chapter Wise Previous Questions Chapter 5 Web Designing Using HTML

Kerala State Board New Syllabus Plus Two Computer Application Chapter Wise Previous Questions and Answers Chapter 5 Web Designing Using HTML.

Kerala Plus Two Computer Application Chapter Wise Previous Questions Chapter 5 Web Designing Using HTML

Plus Two Computer Application Web Designing Using HTML 1 Mark Important Questions

Question 1.
Write HTML tag to set the colour of hyperlink to red. (MARCH-2016)
a) < A colour=”red”?
b) <A colour=”#FF0000″>
c) <BODY LINK = “Red”>
d) <BODYALINK-‘Red”>
Answer:
c) <BODY LINK= “Red”>

Question 2.
Consider the following list created using HTML. (MARCH-2016)
D. Laptop
E. Desktop
F. Printer
a) START= “D” TYPE = “A”
b) START =”4″ TYPE = “A”
c) START = “4” TYPE = “I”
d) START = “D” TYPE =”l”
Answer:
d) START = “D” TYPE =”l”

Question 3.
Nila wanted to set the picture “sky.jpg” as the background of his web page. Choose the correct tag for doing this. (MAY-2016)
IMG SRC = “sky.jpg”>
b) <BODY SRC= “sky.jpg”>
c) <IMG BACKGROUND= “sky.jpg”>
d) <BODY BACKGROUD = “sky.jpg”>
Answer:
d) <BODY BACKGROUD = “sky.jpg”>

Question 4.
_______ attribute of <frame>tag is used to prevent users from resizing the border of a specific frame by dragging it. (MAY-2016)
a) scrolling
b) No resize
c) margin width
d) margin height
Answer:
b) No resize

Question 5.
Write the complete HTML tag that links the text “PSC” to the website www.keralapsc.org (MARCH-2017)
Answer:
<A HREF=”www.keralapsc.org”>PSC</A>

Question 6.
_______ tag in HTML is used to create a drop-down list. (MAY-2017)
a) SELECT
b) OPTION
c) INPUT
d) LIST
Answer:
a) SELECT

Plus Two Computer Application Web Designing Using HTML 2 Marks Important Questions

Question 1.
Write the HTML code to create the following table: (MARCH-2017)
Plus Two Computer Application Chapter Wise Previous Questions Chapter 5 Web Designing Using HTML 1
Answer:
Sp <html>
<head>
<title>
table creation </title>
</head>
<body bgcolor=”cyan”>
<table border=”1″>
<tralign=”center>
<th colspan=”2″>No. of Students</th>
</tr>
<tralign=”left”>
<th>Science</th>
<td>55</td>
</tr>
<tralign=”left”>
<th>Commerce</th>
<td>60</td>
</tr>
<tr align=”left”>
<th>Humanities</th>
<td>58</td>
</tr>
</table>
</body>
</html>

Plus Two Computer Application Web Designing Using HTML 3 Marks Important Questions

Question 1.
Explain the HTML tag <table> and its attributes. (MARCH-2016)
Answer:

  1. Border: It specifies the thickness of the borderlines around the table
  2. Border color: It specifies the colour for borderlines
  3. Align: It specifies the table alignment, the values can be left, right or center
  4. Bgcolor: It specifies the background colour for the table.
  5. Cellspacing: It specifies the space between two table cells
  6. Cellpadding: It specifies the space between cell border and content
  7. Cols: It specifies the number of columns
  8. Width: It determines the table width
  9. Frame: It specifies the border lines around the table, values are void, border, box, above, below,…

Question 2.
Explain <OL> tag with suitable example (MAY-2016)
Answer:
Ordered list (<OI>)- This tag is used to display items with follwing type values
Type=1 for 1,2,3,
Type =i for i,ii,iii,
Type = I for I,II,III
Type = a for a,b,c,…,
Type = A for A,B,C,….
Eg:-<OLType=”1″>
<li>Apple
<li>Orange
<li>Grapes
</OL>

Question 3.
Explain nesting of framesets with an example. (MARCH-2017)
Answer:
Nesting of framesets
A <frameset> tag contains another <frameset> tag
Eg:
<frameset cols=”30%,*”>
<frame src=”page1.html”>
<frameset rows=”33%,33%,*”>
<frame src=”page2.html”>
<frame src=”page3.htmr>
<frame src=”page4.html”>
</frameset>
</frameset>

Question 4.
Write an HTML code to create the following table. (MAY-2017)

PAY-ROLL
EMPNO NAME SALARY
101 ABIN 15,000
102 SINI 25,000
103 ANU 20,000

Answer:
<html>
<head>
<title>
table
</title>
</head>
<body bgcolor=”cyan”>
<table border=”1″>
<tralign=”center”>
<th colspan=”3″>PAY ROLL</th>
</tr>
<tralign=”center”>
<th>EMPNO</th>
<th>NAME</th>
<th>SALARY</th>
</tr>
<tralign=”center”>
<td>101 <br>102<br>103</td>
<td>ABIN<br>SINI<br>ANU</td>
<td>15,000<br>25,000<br>20,000</td>
</tr>
</table>
</body>
</html>