0% found this document useful (0 votes)
53 views

Chapter-4 PDF

class 10 computer apllications

Uploaded by

karthik
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
53 views

Chapter-4 PDF

class 10 computer apllications

Uploaded by

karthik
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Answer key Revised Excel In Computer Applications – 10

Chapter : 4
1 HTML: Image, Links And Tables

THINK AND ANSWER

Part-A : Multiple Choice Questions (Tick the correct option)


Ans. : 1. (a) 2. (b) 3. (b) 4. (a) 5. (c) 6. (d) 7. (a)
8. (b) 9. (b) 10. (d) 11. (c) 12. (a) 13. (c) 14. (b)

Part-B : Very Short Answer Type Questions


Ans-1 : The term SRC stands for source. It specifies the URL of the image to be displayed on the browser.
Ans-2 : The Href attribute with the <A> tag signifies the location of the files that is to be linked with the current web page.
Ans-3 : Linking makes up the web actually creating a spider web like structure with interconnection. Links allow us to link
one page or document or image. We can even create email links.
Ans-4 : The cell padding attribute is used to specify the space between the border and content of an individual cell.
Ans-5 : HyperText contains hyperlinks i.e. text when clicked will automatically link another page or some information at a
different location on the same page.
Ans-6 : HREF

Part-C : Short Answer Type Questions


Ans-1 : The border attribute is used to set the thickness of the table border. If the border is zero or not given at all, the table
will be displayed without borders.
The bordercolor attribute is used to set the colour of the table border. The default is grey colour. This must always be
used with the border attribute.
Example :
<HTML>
<HEAD> <TITLE> TABLES</TITLE></HEAD>
<BODY>
<TABLE BORDER=5 BORDERCOLOR=blue>
:
</TABLE>
</BODY>
</HTML>
Ans-2 : The background colour of the table, row and cell can be set by using the attribute bgcolor with the corresponding
tags. To set the background of the table, the attribute bgcolor is used with the <TABLE> tag. For e.g.
<TABLE bgcolor= yellow>
To set the background of the row, the attribute bgcolor is used with the <TR> tag. For example :
<TR bgcolor= red>
To set the background of the cell, the attribute bgcolor is used with the <TD>tag. For example :
<TD bgcolor= yellow>.
Ans-3 : <CAPTION> tag is used to add title to a table.
Ans-4 : The difference between Rowspan and Colspan are :

Rowspan Colspan

(i) It extends cells vertically. (i) It extends cells horizontally.

(ii) It merges rows vertically. (ii) It merges columns horizontally.



Computers-10 1
Ans-5 : The main attribute which is to be set for Internal linking is NAME. For example :
(i) <A NAME= “part1”>Part I </A>
Creates a name for a particular segment of text.
Another attribute is HREF, For example,
(ii) <A HREF=“#part1”>Go to Part1</A>
Creates a link to the particular segment.
Ans-6 : The significance of the term mailto : is to create an email link. Email link can be created by typing mailto: and an
email address in place of the web page address in the HREF attribute. For example :
<A HREF = “mailto : cordova @yahoo.com”> mail Me </A>
Ans-7 : If the browser does not support images, the ALT attribute has to be set with the <IMG> tag in order to get an
indication about the kind of image that was supposed to be displayed.
Ans-8 : (a) Ordered List (b) Anchor (c) Image (d) Paragraph
Ans-9 : (a) Attribute (b) Tag (c) Attribute (d) Attribute (e) Tag

Part-D : Application Based Questions


Ans-1 : The HTML code to create a link created in the web page aa.html to open bb.html is :
<HTML>
<HEAD>
<TITLE>Display bb.html file</TITLE>
</HEAD>
<BODY>
<A Href = “bb.html”> click here to open bb.html file </A>
</BODY>
</HTML>
The HTML code to create a link in the web page bb.html to open aa.html is :
<HTML>
<HEAD>
<TITLE>Display aa.html file</TITLE>
</HEAD>
<BODY>
<A Href = “aa.html”> click here to open aa.html file </A>
</BODY>
</HTML>
Ans-2 : The correct code to get the output is :
<HTML>
<HEAD>
<TITLE>My Photo</TITLE>
</HEAD>
<BODY>
My Photo
<IMG SRC = “Photo.gif” ALT = “Photo” align = middle>
in the text <br>
</BODY>
</HTML>

2 Computers-10
Ans-3 : The tags utilized in creating the web page are :
(i) <H3> tag to write the heading “HUMAN BODY”.
(ii) <HR> tag to give a horizontal ruler.
(iii) <BR> tag to insert a line break.
(iv) <UL Type = square > tag to create a list.
(v) <A> tag with Href attribute is used to get link to the webpage that contain details of each area of the body.
(vi) <A> tag is used with the Href attribute to get link to the web page that contains the contact details.

FUN ZONE

Part-A : Oral Questions


Ans-1 : Cell spacing is used to specify the space between the cells while cell padding is used to specify the space between the
border and content in a cell.
Ans-2 : The VAlign attribute is used to align the cell contents vertically within the cell. It can be top, bottom or middle. It is
used with the <TD> tag.
Ans-3 : It indicates to insert an image having the path C:\books.jpeg in the system.

Part-B : Quiz
Ans-1 : Yes, <TR> is a container tag.
Ans-2 : <IMG> tag is used along with the ALT attribute to display an alternate text if the image cannot be displayed in the
browser.

Part-C : Fill in the blanks


Ans-1 : TD
Ans-2 : <TH> </TH>
Ans-3 : VAlign
Ans-4 : Align
Ans-5 : TR 15
Ans-6 : Rowspan
Ans-7 : BACKGROUND

Computers-10 3

You might also like