13. What is a software license? Also mention its purpose.
Ans:
A software license is a legal agreement between the software creator (developer/company) and the user. It defines how the software can be used, distributed, or modified.Purpose of a Software License: (i) Protects the developer’s rights (ii) Stops users from sharing or selling the software illegally.
14. What is a search engine? Name any two popular search engines.
Ans: A search engine is a software tool available on the Internet that helps users find information, websites, images, videos, and other content by entering keywords.
Popular Search Engines are: Google, Bing, Yahoo, DuckDuckGo
OR
Write the expanded form of SMTP. How does SMTP differ from POP3?
Ans: SMTP stands for Simple Mail Transfer Protocol.
| SMTP |
POP3 |
| Simple Mail Transfer Protocol |
Post Office Protocol version 3 |
| Used to send emails |
Used to receive/download emails |
| Sender → Mail Server → Receiver |
Mail Server → User’s Computer |
| Used while sending mail |
Used while retrieving mail |
15. Differentiate between a tag and an attribute in HTML with the help of a suitable example.
Ans: A tag is an HTML element used to define the structure of a webpage while an attribute provides additional information about a tag.
Example: <p align="center">Hello World</p>
<p> → Tag (defines a paragraph)
align="center" → Attribute (centers the paragraph text)
16. What is the purpose of <DT> and <DD> tags in a description list?
Ans: In HTML, a description list is created using the <dl> tag. Inside it, we use:
<dt> (Description Term) → shows the term (like a heading)
<dd> (Description Definition) → shows the definition or description of that term
OR
Explain the purpose of the following tags:
(i) <P> - Paragraph Tag
The <p> tag is used to define a paragraph in an HTML document. It automatically adds space before and after the paragraph.
(ii) <HR> - Horizontal Rule Tag
The <hr> tag is used to create a horizontal line. It is used to separate content or sections on a webpage.
17. What is CSS and why is it used in web designing?
Ans: CSS (Cascading Style Sheets) is a stylesheet language used to design and format web pages. It is used along with HTML to improve the appearance of a website. While HTML creates the structure of a webpage, CSS controls its styling such as colors, fonts, spacing, layout, and background. It helps make websites more attractive, organized, and user-friendly. CSS also ensures consistency by allowing the same style to be applied to multiple pages and helps in making websites responsive so they look good on mobile, tablet, and desktop devices.
Example: <p style="color: blue; font-size: 20px;">Hello World</p> Here, CSS is used to change the color and size of the text.
18. Sonal has been given an incomplete HTML code. Help her to complete the code by filling in the blanks as per the mentioned specifications:
<html>
<head>
<style>
p{
________: Green; /* Line 1*/
________: 12px; /* Line 2 */
________: center; /* Line 3*/
color: yellow;
}
________ { /* Line 4*/
width: 50%
}
</style>
</head>
<body>
<p> Saving the environment is crucial for a healthier Earth </p>
<hr>
</body>
</html>
(i) Line 1: The background color of the paragraph should be Green.
(ii) Line 2: The font size of the paragraph text should be 12.
(iii) Line 3: The alignment of the paragraph text should be center.
(iv) Line 4: The width of the horizontal ruler should be 50%.
Ans: Line 1: background-color
Line 2: font-size
Line 3: text-align
Line 4: hr
(In the exam, write the complete HTML code while filling in all the blanks correctly.)
OR
Refer to the incomplete HTML code given below and complete the code based on the specifications provided.
<html>
<head>________</head> <!-- Line 1 -->
<body>
<h1>My Favourite Fruits<h1>
<ol ________ ="I" ________ ="3"> <!-- Line 2 -->
________ <!-- Line 3 -->
<li>Banana</li>
</ol>
</body>
</html>
Complete this code by filling in the blanks as per the specifications that follow:
(i) Line 1: Set the web page title to 'About Me'.
(ii) Line 2: The ordered list should use uppercase Roman numerals for numbering.
(iii) Line 3: The list should begin with Roman numeral III.
(iv) Line 4: The first list item should be 'Apple'.
Ans: Line 1: <title>About Me</title>
Line 2: type="I" and start="3"
Line 3: <li>Apple</li>
(In the exam, write the complete HTML code while filling in all the blanks correctly.)
19. What is e-Banking? Mention one difference between e-Banking and e-Shopping.