Advertisements
Online Mock Tests
Chapters
1: Internet Basics
2: Internet Services and Mobile Technologies
*: Case Study Based Questions Unit I: Networking
Unit II
▶ 3: HTML- I: Basic HTML Elements
Chapter 4: HTML- II: Images, Links and Tables
5: HTML- III: Audio, Video and Forms
6: Cascading Style Sheets (CSS)
*: Case Study Based Questions Unit II: HTML
Unit III
7: Cyberethics
*: Case Study Based Questions Unit III: Cyber Ethics
Chapter #: Assertion and Reasoning Questions
![Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 3 - HTML- I: Basic HTML Elements Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 3 - HTML- I: Basic HTML Elements - Shaalaa.com](/images/computer-applications-english-class-10_6:75861902bcdf4cae915c246d575e285b.jpg)
Advertisements
Solutions for Chapter 3: HTML- I: Basic HTML Elements
Below listed, you can find solutions for Chapter 3 of CBSE Sumita Arora for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १०.
Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० 3 HTML- I: Basic HTML Elements Assisted Practice [Pages 119 - 126]
HTML is acronym for ______.
High Text Marker Language
Higher Text Markup Language
Hyper Text Markup Language
Hyper Transfer Makeup Language
A coded HTML command that indicates how part of a web page is displayed is call ______.
Attribute
Tag
Style
All of these
Which of the following tags identifies the document as an HTML document?
<HTML>
<HEAD>
<BODY>
<P>
The tags that require a starting as well as ending tag are called ______.
Pair element
Twin Element
Container Element
Empty Element
Which sequence of HTML tags is correct?
<html><head><title></title></head><body></body></html><html><head><title><body></title></head></body></html><html><head><title></head><body></body></title></html><html><head><title><body></body></title></head></html>
To specify the background image for the document, Background attribute is used with which of the following tags?
<BODY>
<HTML>
<P>
None of these
To define the basic font size, which of the following tag is used?
SIZE
BASEFONT
FONT
All of these
The unnumbered lists can be created by ______ tag.
<UL>
<OL>
<LI>
Both (a) and (b)
Both (a) and (c)
Both (b) and (c)
The numbered lists can be created by ______ tag.
<UL>
<OL>
<LI>
Both (a) and (b)
Both (a) and (c)
Both (b) and (c)
Consider the following HTML code:
<ol type='i'>
<li>First</li>
<li>Second</li>
<li>Third</li>
<li>Fourth</li>
</ol>
Choose the correct output that would be shown upon execution of the above code, from the choices given below:
- First
- Second
- Third
- Fourth
- First
- Second
- Third
- Fourth
- First
- Second
- Third
- Fourth
- First
- Second
- Third
- Fourth
We can create a numbered list using the ______ tag.
<UL>
<list>
<OL>
<DL>
Identify which of the following type of list will create a bulleted list.
Unordered
Ordered
Definition
Numbered
In <OL> and <UL>, the style of bullet or number is defined by ______.
type attribute
style attribute
both (a) and (b)
None of the above
Which of the following will produce a solid circle bullet when given as value of type with?
disc
circle
square
none of these
Tag (s) required to create Description lists in HTML ______.
<DL>
<DL>
<DD>
All of the above
An advantage of using basic HTML to create a document is that ______.
all word processors can display the document
all browsers can display the document
it will print better than a word processing document
it is easier to write in HTML
Factors that affect how an HTML document looks on the monitor do not include ______.
operating system
window size
color depth
html tags
Every HTML document must include the tags ______.
<html> </html>& <body> </body><body> </body> & at least one <p><html> </html> & <head> </head>
If the HTML code looks like:
<font face="Arial" size="3" color="#000000">Welcome</font>
then the text would look like:
Welcome
Welcome
Welcome
Welcome
Which attribute is not valid for <BODY> tag?
background
color
vlink
leftmargin
Which attribute is NOT valid for the <body> tag?
background
color
vlink
bgcolor
Which of these is NOT an attribute of the font tag?
color
face
type
size
How can you make a text appear bold?
<b> text</b>
<strong> text</strong>
both (a) and (b)
neither
Choose the correct HTML tag to make a text italic
<italic>
<i>
<italicise>
all of these
If the background image is smaller than the screen, what will happen?
It will be stretched
It will leave a blank space at the bottom of your page
It will be repeated
The <title> tag belongs where in your HTML?
Head
Arm
Body
Foot
Choose the correct HTML tag for the largest heading
<heading>
<h6>
<head>
<h1>
Besides, <B> another way to make text bold is what?
<strong>
<dark>
<fat>
foot
Why should you specify a background color if you are using an image for the actual background of your page?
The background color will be shown until the image loads.
In case the image doesn't fit right.
So the text shows up better.
All normal webpages consist of what two parts?
Head and body
Top and bottom
Body and frameset
Container elements in HTML require ______.
Starting tag
Ending tag
Starting and Ending tag
None of these.
Background attribute of <BODY> is used to ______.
give background color to web page.
load an image and use it as a background when displaying webpage.
insert an image within web page.
none of these.
With which HTML tag do you apply attributes that modify text size, font-face, and color?
<font><mod><f><text>
Which HTML tag would you apply the bgcolor attribute to in order to change the background color of the web page?
<html><head><body><p>
Gagandeep has written the following code to display an image in the background of HTML document:
<BODY BgGround = "Animals.jpeg">
but he is not getting the desired output. Help him in identifying correct code from the following :
<BODY Bg = "Animals.jpeg"><BODY BACK = "Animals.jpeg"><BODY BGIMAGE = "Animals.jpeg"><BODY BACKGROUND = "Animals.jpeg">
In which section of an HTML document do you enter the <P> element?
The body section
The footer section
The style sheet
The head section
In which HTML element do you apply attributes that modify the background image?
The
<html>element.The
<headl>element.The
<background>element.The
<body>element.
Which of the following heading tags will cause a browser to render text at the largest default size?
<h3>
<h2>
<h5>
<h4>
Which is the correct way to comment out something in HTML?
Using ## and #
Using <!-- and >
Using </-- and -/->
Using <!-- and -I>
Which of the following is the proper syntax to start an HTML comment?
<!--
<!>
<comment>
<notate>
Which one of the following is the HTML tag used to insert a horizontal rule?
<h1><hr><rule><br>
HTML tag to draw horizontal line ______.
<hl>
<hr>
<hline>
None of the above
What HTML container tags do you apply to text to format the text as a paragraph?
<para></para>
<text></text>
<p></p>
<format style="para"></format>
HTML provides us with ______ levels of headings that can be inserted into a web page.
5
6
7
8
Which of the following options is an INVALID attribute of <font> tag in HTML?
face
width
size
color
Which HTML tags cause browsers to rendertext as italics?
<text style = "italics"></text>
<ital></ital>
<i></i>
<b></b>
Intrepret this statement ______.
It makes Michelle strong
It highlights Michelle as being strong
It will print out Michelle in bold font
It will print strong Michelle/strong
Which one is correct?
<b>Click Here<b>
<strong>Click Here<strong>
<b>Click Here</b>
</strong>Click Here</strong>
The page title is inside the ______.
Body
Head
Division
Table
To align multiple lines of text we use ______.
Justify
DIV
Align
None of these.
The value of #FFFFFF is ______.
Black
White
Red
none of the above.
The value of #000000 is ______.
Black
White
Red
none of the above
In HTML, lists can be of ______.
unnumbered
numbered
definition
all of these
To start a list at the count of 3, use which?
<ol start="3">
<ol begin="3">
<ol list="5">
Which of the following is the correct way to create a list using the lowercase letters?
<ol alpha =a" ><ol type = "a"><ol letter = "a">None of the above
What is the correct HTML for adding a background color?
<body background="yellow">
<background>yellow</background>
<body style="background-color:white">
<body bgcolor="white">
To create a bulleted list use?
<il><ul>
<ol>
When making bulleted lists you have what options?
disc, circle, square
triangle, square, circle
square, disc, polygon
Which one of the following is the list type that will create a bulleted list?
unordered
option
decorated
ordered
The default starting value for an ordered list in HTML is ______.
i
1
a
.
HTML is a ______.
Package
Software
Language
None of these
Choose the correct HTML tag to make the tex bold?
<B>
<BOLD>
<STRONG>
Both (a) & (c)
Choose the correct HTML tag for the largest heading?
<H1>
<H6>
<H10>
<HEAD>
Which of the following will result in the largest text size?
<H3>
<H6>
<H2>
<H4>
State True or False:
<BR> tag has its closed tag as </BR>
State True or False:
<P> tag has no closing tag
State True or False:
<HR> tag is same as <BR>
State True or False:
<KBD> tag is used to display tables
In <BR> tag resets the paragraph alignment to the default left alignment. True or False?
The textual content that appears in the source HTML document but is not rendered by the browser is called ______.
Comments are enclosed in ______ and tags.
By defaultproduces ______ a rule.
______ text styles are handled in its own way by the browsers.
To display an & on the web page, ______ is used in the source HTML code.
Two tags break the line flow. These are ______ and ______.
Background colour is set by ______ attribute and background graphics is set by ______ attribute of ______ tag.
An element that only has a starting tag and no ending tag is ______ element.
Section B: Theoretical Questions.
Write a sample HTML code to display an address in exactly the same way as given here:
What is the difference between container tags and empty tags?
Can you assign justified alignment to a paragraph in HTML?
What is the difference between <BASEFONT> and <FONT> tags?
What are logical text styles?
What are physical text styles?
Write the difference between <OL> and <UL> tags in HTML. Also write suitable examples of each to illustrate the difference.
What is wrong with following coding?
<OL type = "a" start = "d">
What is wrong with following coding?
<UL type = "a" start = 4>
Differentiate between container and empty elements of HTML.
Identify the errors and write the corrected HTML statements:
<BODY BACKGROUND="Red"><FONT TYPE="Arial">
Section C: Application Oriented Problems (Summative Assessment)
Consider the following web page:

- The address of this website is ______.
- Welcome to Cheap Books
- Welcome to Cheap Books
- Company information
- www.cheapbooks.com
- The menu at P can be used to ______.
- send an attachment to a mailing list
- copy and paste the information
- save the page on a disk
- bookmark the web page
- To use the Internet to go to other web pages available through buttons the user should use ______.
- directory search tools
- find and replace
- a search engine
- click on hyperlinks
- The type of software application used to view this web page is ______.
- browser
- database
- spreadsheet
- word processing
Consider the following web page:

- www.ringshop.com is ______.
- a link
- an email address
- a website address
- a teletext address
- The image at P is a ______.
- search engine
- bullet point
- hyperlink
- hotspot
- The symbol in the line of text at Q means that this web page is ______.
- copied
- current
- copyright
- confidential
- Which of the following tags, do you think is/are used to create the list shown in the web page?
- List
- OL and LI
- UL and LI
- OL and START
Carefully study the Webpage given below. Identify 10 tags (structural as well asformatting tags) that have been utilized in creating this webpage and write the usage of each of them.

Write HTML code to display the unordered list (with square bullets) of two cities “DELHІ” and “MUMBAI”. The web page should have a yellow background and the title of the page should be ‘My Cities’.
Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० 3 HTML- I: Basic HTML Elements Assignment [Page 127]
Type A: Theoretical Questions
HIML stands for ______.
Solutions for 3: HTML- I: Basic HTML Elements
![Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 3 - HTML- I: Basic HTML Elements Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 3 - HTML- I: Basic HTML Elements - Shaalaa.com](/images/computer-applications-english-class-10_6:75861902bcdf4cae915c246d575e285b.jpg)
Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 3 - HTML- I: Basic HTML Elements
Shaalaa.com has the CBSE Mathematics कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० CBSE solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. Sumita Arora solutions for Mathematics कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० CBSE 3 (HTML- I: Basic HTML Elements) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.
Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. Sumita Arora textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.
Concepts covered in कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 3 HTML- I: Basic HTML Elements are Introduction to HyperText Markup Language (HTML), HTML Structure, Getting Started With HTML Programming, Basics of HTML Tags, Style Tags, Lists in HTML, Images in HTML, Links in HTML, Superscript and Subscript in HTML, Tables in HTML, Forms in HTML, Cascading Style Sheets in HTML, Embed Audio and Video in HTML Page, Different Controls Supported by HTML Form.
Using Sumita Arora कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० solutions HTML- I: Basic HTML Elements exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in Sumita Arora Solutions are essential questions that can be asked in the final exam. Maximum CBSE कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० students prefer Sumita Arora Textbook Solutions to score more in exams.
Get the free view of Chapter 3, HTML- I: Basic HTML Elements कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० additional questions for Mathematics कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० CBSE, and you can use Shaalaa.com to keep it handy for your exam preparation.
