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

Chapter-3 PDF

class 10 computer apllications

Uploaded by

karthik
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views

Chapter-3 PDF

class 10 computer apllications

Uploaded by

karthik
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Answer key Revised Excel In Computer Applications – 10

Chapter : 3
1 Basic HTML Elements

THINK AND ANSWER

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


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

Part-B : Very Short Answer Type Questions


Ans-1 : A tag is an HTML command that controls the structure and appearance of the page or document that is created.
Ans-2 : The main attribute of the BASEFONT tag is SIZE.
Ans-3 : The code is :
<HTML>
<HEAD>
<TITLE> My Name </TITLE>
</HEAD>
<BODY>
<B> <I> <U> My Name is Nisha </U> </I> </B>
</BODY>
</HTML>
Ans-4 : The HTML code is :
<HTML>
<HEAD>
<TITLE> Thank You </TITLE>
</HEAD>
<BODY>
<FONT size=5 color= yellow face= “Comic Sans MS”>
Thank you!
</FONT>
</BODY>
</HTML>
Ans-5 : The code is
<HTML>
<HEAD>
<TITLE> Horizontal Rule </TITLE>
</HEAD>
<BODY>
<HR size = 15 width = “50%”>
</BODY>
</HTML>
Ans-6 : The HTML code is
<HTML>
<HEAD>
<TITLE>Background<TITLE>
</HEAD>

Computers-10 1
<BODY background = “school_logo.bmp”>
To display the school logo as the background.
</BODY>
</HTML>
Ans-7 : The text will be displayed as black and the background will be displayed as white.
Ans-8 : To draw a 2-D rule, Noshade is used with the <HR> tag.
The HTML code is :
<HTML>
<HEAD>
<TITLE> 2-D Rule </TITLE>
</HEAD>
<BODY>
<HR width = 50% noshade> will display a 2D rule that will spread across 50% of the window.
</BODY>
</HTML>
Ans-9 : The HTML code is :
<HTML>
<HEAD>
<TITLE> Escape Sequence </TITLE>
</HEAD>
<BODY>
&amp; <BR>
&quot; on the page &quot;
</BODY>
</HTML>
Ans-10 : HTML container tags are those that require to be used in pairs i.e. opening tag and also the closing tag.
For example : <BODY> is an opening tag and </BODY> is a closing tag.
Ans-11 : The HTML code is:
<HTML>
<HEAD>
<TITLE> GOOD FUN
</TITLE>
</HEAD>
</HTML>
Ans-12 : The HTML code is :
<HTML>
<HEAD>
<TITLE> Happy Mother’s Day </TITLE>
</HEAD>
<BODY>
<H1> HAPPY MOTHER’S DAY </H1>
</BODY>
</HTML>
Ans-13 : Click View menu → Source option.

2 Computers-10
Part-C : Short Answer Type Questions
Ans-1 : The correct lines of HTML code are :
(i) <HTML>
<HEAD> <TITLE> HEADING ELEMENTS IN HTML</TITLE> </HEAD>
<BODY bgcolor=lightblue>
<CENTER> Please Centre this!!</CENTER>
<H1 align=justified> Good morning !! How are U?</H1><BR>
<HR width=75 align=right noshade>
<FONT size=7 color=blue face=”Arial Black, Bradley Hand ITC” >
Check this font out .
<P >Let’s close this</P>
</BODY> </HTML>
(ii) <HTML>
<HEAD> <TITLE> BACKGROUND PICTURE</TITLE> </HEAD>
<BODY background=”cards.bmp” leftmargin=10>
<HR color = red>
HEY!! Count the cards.
<P align=center>Happy Diwali !!
Merry Christmas </P> <BR>
<HR color=blue>
</BODY> </HTML>
(iii) <HTML>
<HEAD> <TITLE> UNORDERED LIST</TITLE> </HEAD>
<BODY>
My Hobbies are :
<UL type=square>
<LI> Gardening
<LI> Computers
</UL>
</BODY>
</HTML>
(iv) <HTML>
<HEAD> <TITLE> ORDERED LIST</TITLE> </HEAD>
<BODY>
Safety rules on the road are :
<OL type= a>
<LI>Walk on the left side of the road .
</OL>
<IMG src=”aa.gif”>
</BODY> </HTML>
Ans-2 : The purpose of the tag <H1>..... <H6> is to create headings that stand out from the rest of the text in the page.
Ans-3 : ALINK is an attribute that can be used to set the colour of the active links on the page.
Ans-4 : BGCOLOR in HTML is an attribute that is used to set the background colour of the HTML document. The default
color for BGCOLOR is WHITE.

Computers-10 3
Ans-5 : The different types of numbering that can be displayed using the TYPE attribute on the <OL> tag are :

Type Values Style of Numbered List Sample Output

I Uppercase Roman numerals I, II, III ...

i Lowercase Roman numerals i, ii, iii ...

1 Arabic numerals 1, 2, 3

A Uppercase Alphabet A, B, C ...

a Lowercase Alphabet a, b, c ...



Ans-6 : If we want square bullets on our shopping list, we should use the attribute TYPE with the <UL> tag and assign it to
square For e.g.:
<HTML>
<HEAD>
<TITLE>Unordered Lists</TITLE>
</HEAD>
<BODY>
<UL type = square>
<LI> Bread
<LI> Butter
<LI> Cheese
</UL>
</BODY>
</HTML>

Part-D : Application Based Questions


Ans-1 : The output is :
“Can you predict outputs!!” is displayed on the title bar.
Text can you find an error?
Superscript – X5
Subscript – H2
Ampersand – &
Double Quote – “
Less than sign – <
Greater than sign – >
Ans-2 : The advantages of having web page for Mr. Lal’s factory are :
(i) The web page may contain the name and details of the spare parts in the listed form, so it becomes easier to
read for the viewer.
(ii) The manufacturing unit can become world wide famous.

4 Computers-10
FUN ZONE

Part-A : Oral Questions


Ans-1 : HTML stands for Hyper Text Markup Language. It is the special language used to create web pages or documents on
the World Wide Web. It is used to describe the structure of text-based information in a document and set a definite
design, layout and the final look of the page.
Ans-2 : BR tag used to insert a line break. It is an empty tag.
Ans-3 : The attribute BGCOLOR is used to give a background colour of the web page while BACKGROUND attribute is
used to insert an image as the background of the web page.
Ans-4 : Using <Title> tag

Part-B : Quiz
Ans-1 : The default symbol of unordered list is circle.
Ans-2 : The text given in <title> tag appears on the title bar.
Ans-3 : The three attributes of <font> tag are size, face and color.
Ans-4 : .htm or .html
Ans-5 : <Br>

Part-C : Fill in the blanks


Ans-1 : tag
Ans-2 : six
Ans-3 : face
Ans-4 : Comments
Ans-5 : Size, <HR>
Ans-6 : <OL>
Ans-7 : type
Ans-8 : <SUB>, <SUP>

Computers-10 5

You might also like