Loading...
Please wait while we prepare your content
Please wait while we prepare your content
Solutions for Computer Applications, Class 10, CBSE
<audio src = "audio.mp3">
Reason — We can embed audio in an HTML page by using <audio> tag in the following way:
<audio src = "audio.mp3>
Assertion (A) A search engine is a Website that lets you search the Internet for Websites on specific topics.
Reason (R) Search engines turn the Web into a powerful tool for finding information on any topic.
Both A and R are true and R is a correct explanation of A.
Reason — A is true as a search engine is a Website that lets us search the Internet for Websites on specific topics. R is true as search engines turn the Web into a powerful tool for finding information on any topic. R is the correct explanation of A.
Assertion (A) Web users fill out the forms using checkboxes, radio button or text fields.
Reason (R) A web form is a list that is used to store data.
A is true and R is false.
Reason — A is true as web users fill out the forms using checkboxes, radio button or text fields. R is false as a web form is a means to collect information/data from the site visitor. It is done with the help of controls that collect the information and send it over.
Indian railway has a website dedicated to the E-reservation. Its URL is www.irctc.co.in.
(i) What does 'in' symbolize here?
(ii) Mention any two benefits of E-reservation.
(i) The 'in' symbolizes India. It means that www.irctc.co.in is an Indian website.
(ii) Two benefits of E-reservation are:
The disadvantages of E-shopping are:
A web portal is a gateway to a wide range of Internet services. It is a launch pad to a host of web services such as e-mail, shopping, gaming, news, weather etc.
An advantage of web portal is that it provides multiple web based services on the same web site.
<HTML>
<HEAD>
<TITLE>
Countries and their Capitals
</TITLE>
</HEAD>
<BODY>
<B>Countries and their Capitals</B>
<OL TYPE = "1">
<LI>INDIA</LI>
<UL TYPE = "DISC">
<LI>New Delhi</LI>
</UL>
<LI>PAKISTAN</LI>
<UL TYPE = "DISC">
<LI>Islamabad</LI>
</UL>
<LI>THAILAND</LI>
<UL TYPE = "DISC">
<LI>Bangkok</LI>
</UL>
</OL>
</BODY>
</HTML>
The violation of Intellectual Property Rights include the following:
During e-commerce transactions, we share a lot of personal and financial information with the e-commerce sites. Privacy in E-Commerce means that the e-commerce sites should clearly state their privacy policy declaring how it uses and shares the gathered customer data or whether the customer can choose to keep this information private.
The <IMG> tag is used to add an image in the HTML document. Its syntax is as follows:
<IMG src = "path of image">
HTML can be used to insert images in the following formats:
Two benefits of cascading style sheets are:
<BASEFONT> tag | <FONT> tag |
---|---|
The <BASEFONT> tag sets a base font size for the entire document. | The <FONT> tag applies font and text styling to a specific section of text enclosed within its opening and closing tags. |
The closing tag </BASEFONT> is optional. | The closing tag </FONT> is must for the changes in appearance to take effect. |
Electronic Learning refers to a wide range of applications and processes, designed to provide guidance and/or deliver information to students, faculties, or employees of the companies through electronic means. It provides flexibility to its users.
A trademark is a distinctive sign, symbol, logo, name, word, or phrase used to identify and distinguish the goods or services of one seller or provider from those of others.
A proprietary software license grants limited usage rights, protecting the intellectual property of the developer. It enables monetization through selling licenses, defining terms, and maintaining control over source code access and distribution.
<HTML>
<HEAD>
<TITLE>
List of Indian States with their capital
</TITLE>
</HEAD>
<BODY>
List of Indian States with their capital
<OL TYPE = "1">
<LI>Delhi</LI>
<UL TYPE = "CIRCLE">
<LI>New Delhi</LI>
</UL>
<LI>Haryana</LI>
<UL TYPE = "CIRCLE">
<LI>Chandigarh</LI>
</UL>
<LI>Gujarat</LI>
<UL TYPE = "CIRCLE">
<LI>Gandhinagar</LI>
</UL>
<LI>Rajasthan</LI>
<UL TYPE = "CIRCLE">
<LI>Jaipur</LI>
</UL>
<LI>Maharastra</LI>
<UL TYPE = "CIRCLE">
<LI>Mumbai</LI>
</UL>
<LI>Uttar pradesh</LI>
<UL TYPE = "CIRCLE">
<LI>Lucknow</LI>
</UL>
</OL>
</BODY>
</HTML>
<HTML> tag identifies the document as an HTML document. An HTML document begins with <HTML> and ends with </HTML>. It does not have any effect on the appearance of the document. It makes the browsers and other programs know that this is an HTML document.
<P> tag | <BR> tag |
---|---|
The paragraph tag helps to identify and separate paragraphs in an HTML document. | The line break tag avoids blank spaces between the lines. |
It is a container tag. | It is an empty tag. |
For example,<P> This is paragraph 1. <P><P> This is paragraph 2.<P> Output: This is paragraph 1. This is paragraph 2. | For example,This is line 1. <BR> This is line 2. Output: This is line 1. This is line 2. |
<TABLE>
<TR>
<TH> question </TH>
<TH> marks</TH>
</TR>
<TR>
<TD ROWSPAN = "3"> 1 </TD>
<TD> 2 </TD>
</TR>
<TR>
<TD> 2 </TD>
</TR>
<TR>
<TD> 5 </TD>
</TR>
</TABLE>
Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for given specifications.
(i) Title of the page is "IIT".
(ii) Font face of heading is "Cambria".
(iii) The color of the heading of the page is "Red".
(iv) Image used as "IIT.png".
Use link as:
For IIT Bombay as bombay.html
For IIT Kanpur as kanpur.html
For IIT Madras as madras.html
For IIT Delhi as delhi.html
For IIT Roorkee as roorkee.html
<HTML>
<HEAD>
<TITLE>Indian Institute of Technology</TITLE>
</HEAD>
<BODY>
<CENTER>
<FONT face = "Cambria" color = "Red">
<H1>Indian Institute of Technology</H1>
</FONT>
</CENTER>
<HR>
<IMG src = "IIT.png" alt = "IIT" align = "right">
<P>
The Indian Institutes of Technology (IITs) are autonomous public institutes of higher education, located in India. They are governed by the Institutes ofTechnology Act 1961 which has declared them as Institutes of national importance alongside National Institutes of Technology and lays down their powers, duties and framework for governance etc. The Institutes of Technology Act, 1961 lists twenty-three institutes.
</P>
<CENTER>
<FONT face = "Cambria">
<H2>5 Popular IIT Colleges<H2>
</FONT>
</CENTER>
<TABLE align = "Center" border = "2">
<TR>
<TH align = "Center">Name</TH>
<TH align = "Center">State</TH>
<TH align = "Center">Established</TH>
</TR>
<TR>
<TD><A href = "bombay.html">IIT Bombay</A></TD>
<TD>Maharashtra</TD>
<TD>1958</TD>
</TR>
<TR>
<TD><A href = "kanpur.html">IIT Kanpur</A></TD>
<TD>Uttar Pradesh</TD>
<TD>1959</TD>
</TR>
<TR>
<TD><A href = "madras.html">IIT Madras</A></TD>
<TD>Tamil Nadu</TD>
<TD>1959</TD>
</TR>
<TR>
<TD><A href = "delhi.html ">IIT Delhi </A></TD>
<TD>Delhi </TD>
<TD>1963</TD>
</TR>
<TR>
<TD><A href = "roorkee.html">IIT Roorkee</A></TD>
<TD>Uttarakhand</TD>
<TD>2001</TD>
</TR>
</TABLE>
</BODY>
</HTML>
Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for given specifications.
(i) Background color of page is yellow.
(ii) Link color is black and visited link color is green.
(iii) Heading of the page is maroon.
(iv) Image used is mainrhino.jpg.
(v) Table border is 2px.
<HTML>
<HEAD>
<TITLE>INDIAN RHINOCEROS</TITLE>
</HEAD>
<BODY bgcolor = "yellow" link = "Black" vlink = "Green">
<FONT color = "Maroon">
<H1><CENTER>INDIAN RHINOCEROS</CENTER></H1>
</FONT>
<IMG src = "mainrhino.jpg" alt = "rhino" align = "right">
<P>
The Indian Rhinoceros lives primarily in northern India and Nepal. These massive beasts have some noticeable physical differences from their African relatives. Their segmented body looks like a formidable coat of natural body armour. It functions like one also. Flexible skin between the thicker hide "plates" allows them to shift as the rhinoceros moves.
</P>
Other Endangered Animals:<BR>
<UL type = "disc">
<LI><A HREF = "WHOOPING_CRANE.HTML"><U>Whooping Crane</U></A></LI>
<LI><A HREF = "WHITE_RHINO.HTML"><U>White Rhino</U></A></LI>
<LI><A HREF = "SUMATRAN_RHINO.HTML"><U>Sumatran Rhino</U></A></LI>
<LI><A HREF = "TOUCAN.HTML"><U>Toucan</U></A></LI>
</UL>
<CENTER>Fast Facts</CENTER>
<TABLE border = "2" align = "center">
<TR>
<TD>Type</TD>
<TD>Mammal</TD>
</TR>
<TR>
<TD>Diet</TD>
<TD>Herbivore</TD>
</TR>
<TR>
<TD>Average life span in the wild</TD>
<TD>40 years</TD>
</TR>
<TR>
<TD>Size</TD>
<TD>Length 12.5 ft, Height upto 6 ft</TD>
</TR>
<TR>
<TD>Weight</TD>
<TD>4, 400 lbs(2,000 kg)</TD>
</TR>
</TABLE>
<A href = "details.html">For more details</A>
</BODY>
</HTML>
Case Study 1
Raman is a Computer Teacher in a private school. He has 4 computers in a computer lab where his colleague used to work. All the computers are stand alone and not connected with the Internet. He called a Network engineer to form a network of 4 computers. Answer the following questions in reference to the given situation.
(i) What type of Network will be formed?
(ii) Which application/software is required in all computers to browse Internet? Give two examples.
(iii) Write any two advantages of Computer Network.
(iv) Name any two ISP.
(i) Local Area Network (LAN) will be formed.
(ii) An application software called web browser is required in all computers to browse Internet.
Two examples of web browsers are Google Chrome and Mozilla Firefox.
(iii) Two advantages of Computer Network are:
(iv) Two internet service providers are Airtel and BSNL.
Case Study 2
The open source software movement is a movement that supports the use of open source licenses for some softwares. It was started to spread the concept of open source software. It began in the late 80's with the launching of the GNU project by Richard Stallman. He shared a key role in the conceptualisation of freely shared source code.
Answer the following questions.
(i) Define the term open source.
(ii) What are the criteria to be followed for open source software?
(iii) How do programmers contribute to open source community?
(iv) Name any two open source softwares.
(i) Open source is a philosophy that promotes the free access and distribution of an end product, usually software or a program.
(ii) Four criteria that qualify a program to be Open source software are:
(iii) Programmers contribute to open source community by writing and exchanging programming code for software development.
(iv) Two open source softwares are Linux and Unix.