Loading...
Please wait while we prepare your content
Please wait while we prepare your content
Solutions for Computer Applications, Class 10, CBSE
Open source software
Reason — Open source software is the software, whose source code is freely available and which can be copied, modified and redistributed as well.
A small box that connects your devices to the Internet using cables.
Reason — A modem is a small box that connects our devices to the Internet using cables. It converts data from a digital format into a format suitable for an analog transmission medium such as telephone or radio and vice versa.
TCP/IP
Reason — TCP/IP (Transmission Control Protocol/Internet Protocol) is used for delivering data from the source to the destination. TCP manages the breaking down and assembling of the data, whereas IP is responsible for the accurate delivery of the data over the Internet.
SMTP
Reason — SMTP (Simple Mail Transfer Protocol) is the standard protocol for sending emails across the Internet. SMTP is an application layer protocol which is used by mail servers to send, receive, and relay emails between senders and receivers.
<input type = "password">
Reason — The password boxes are created using an <INPUT> element whose TYPE attribute has a value of "password". An example is as follows:
<INPUT TYPE = "PASSWORD" NAME = "PWD" />
<IMG src = "image.gif ">
Reason — The <IMG> tag is used to insert an image in a web page. The src attribute helps in defining the source of an image. It is defined as follows:
<IMG src = "image.gif ">
addition of alternate text about an image
Reason — The alt attribute allows addition of alternate text about an image, that the browser can display if the image cannot be displayed.
<SUP>
Reason — The <SUP> tag is used to create superscripts on an HTML page. The given formula can be displayed by the following HTML code:
(a<sup>2</sup> + b<sup>2</sup>)
Assertion (A) SMTP is the standard protocol for E-mail services on a TCP/IP network.
Reason (R) SMTP is a network-layer protocol.
A is true and R is false.
Reason — A is true as SMTP is the standard protocol for E-mail services on a TCP/IP network. It is used by mail servers to send, receive, and relay emails between senders and receivers.
R is false as SMTP is an application layer protocol and not a network layer protocol.
Assertion (A) You can place HTML links to any website you like to your web page.
Reason (R) External linking in HTML allows you to place links of other websites on your page.
Both A and R are true and R is a correct explanation of A.
Reason — A is true as we can place HTML links to any website we like to our web page. R is true as external linking in HTML allows us to place links of other websites on our page. R is the correct explanation of A as we use external linking to add links of other websites to our web page.
(i) Dial-up connection — A dial-up connection is a way to access the internet using a standard phone line and a modem. It works by dialing a specific phone number provided by an Internet service provider (ISP) and establishing a connection through a modem.
(ii) E-Governance — e-Governance refers to the application of electronic means in governance with an aim of fulfilling the requirements of common man at affordable costs and in fastest possible time.
Wi-Fi or Wireless Fidelity uses radio waves to create a secure, reliable and fast Wireless Local Area Network (WLAN). The devices require a wireless adapter to connect to the WLAN using WiFi. It is widely used to share an internet connection among the devices connected to the WLAN.
A web page is a digital document that is linked to the World Wide Web and viewable by anyone connected to the internet having a web browser. It can contain any type of information such as text, colour, graphics, animation, video and sound etc.
The dangers associated with social networking are :
The guidelines to avoid plagiarism are:
The term Netiquette refers to a set of rules for acceptable online behaviour. It is a combination of two words Network and Etiquette. When one follows netiquettes while working online, one can safely use the internet and make internet safe for the other users as well.
To change the size and style (face) of text in an HTML file, we can use the <FONT> tag. The two attributes used with <FONT> tag are:
The font tag is used as follows:
<FONT FACE = "ARIAL" SIZE = "3"> Hello World </FONT>
The advantages of external style sheet are:
The contents declared in header cells of a table are displayed in a distinctive style, such as bold faced. The content is emphasized as a heading as compared with the contents of other cells.
The header cell is specified by using the <TH> tag inside the <TABLE> tag.
For example,
<TABLE>
<TR>
<TH>S. No.</TH>
<TH>Name</TH>
</TR>
<TR>
<TD>1</TD>
<TD>Ritu</TD>
</TR>
</TABLE>
The output is as follows:
S. No. | Name |
---|---|
1 | Ritu |
Two controls supported by HTML form are:
1. Checkbox — The check box is used to select a number of options in a given list of options on the form. Its syntax is as follows:
<INPUT TYPE = "CHECKBOX" NAME = "S1" VALUE = "ENGLISH" /> English
2. Text box — A text box allows a user to enter alphanumeric data that is a combination of characters and numbers. Its syntax is as follows:
<INPUT TYPE = "TEXT" NAME = "NAME" />
The three laws that are formulated to stop software piracy are:
<HTML>
<HEAD>
</HEAD>
<BODY>
<UL TYPE = "DISC">
<LI>Fruits</LI>
<UL TYPE = "CIRCLE">
<LI>Apple</LI>
<LI>Banana</LI>
<LI>Mango</LI>
<LI>Orange</LI>
</UL>
<LI>Vegetables</LI>
<UL TYPE = "CIRCLE">
<LI>Spinach</LI>
<LI>Cauliflower</LI>
<LI>Beetroot</LI>
</UL>
<LI>Cereals</LI>
<LI>Nuts</LI>
</UL>
</BODY>
</HTML>
The various attributes of <INPUT> tag are:
(a) Write the HTML code to display an inline image named pencil.jpg located at C:\ in the center of your Web page.
(b) Write the HTML command to display the A2 + B2 in your Web page.
(c) Write HTML code to insert an image named globe.jpg in the background of a Web page.
<HTML>
<BODY BACKGROUND = "GLOBE.JPG">
<CENTER>
<IMG SRC = "C:\pencil.jpg" ALT = "PENCIL">
</CENTER>
<BR>
A<SUP>2</SUP> + B<SUP>2</SUP>
<BR>
</BODY>
</HTML>
<HTML>
<BODY>
<TABLE border = "3" cellspacing = "3">
<TR>
<TH align = "center"> ADMNO </TH>
<TH align = "center"> SNAME </TH>
<TH align = "center"> NAME </TH>
<TH align = "center"> DOB </TH>
</TR>
<TR>
<TD> 1110 </TD>
<TD> MANJIT </TD>
<TD> RANJIT </TD>
<TD> 4-MAR-1998 </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) Link color is "blue".
(ii) Font face of heading is "lucida handwriting".
(iii) The color of the heading of the page is "green".
(iv) The images used are "par.jpg" and "prog.jpg".
(v) Use link as "programming.html" for Programming.
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY link = "Blue">
<IMG src = "Par.jpg" width = "170" height = "160" align = "left">
<FONT face = "Lucida Handwriting" color = "Green"> <H1>Paradise Wheels Co.</H1>
</FONT>
<H3 align = "center">Because You're Worth It</H3>
<P align = "right">
<B>
Home&nbsp&nbspAbout Us&nbsp&nbspServices&nbsp&nbspProducts&nbsp&nbspContact Us
</B>
</P>
<HR>
<P align = "right"><FONT face = "Lucida Handwriting">
Our Services
</FONT>
<BR>
<IMG src = "prog.jpg" width = "170" height = "160" align = "right">
<BR>
<A href = "programming.html">Programming</A>
</P>
<P>
<B>Features of This Company</B>
<UL>
<LI>Good businesses need good plans.</LI>
<LI>To be successful, a company must be motivated by something beyond financial success.</LI>
<LI>To make their businesses successful, business owners need good attitudes.</LI>
<LI>To be successful, businesses need to commit resources and time to training their employees,<br>as well any independent contractors with whom they work.</LI>
<LI>Creating, enhancing and celebrating teamwork is at the heart of every successful company culture.</LI>
<LI>Effective communication patterns within successful organizations have three main characteristics: clarity, courtesy and proactivity.</LI>
</UL>
</P>
</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) Title of the page is "Save Tiger".
(ii) Image used is tiger. jpg.
(iii) Text color is "green".
(iv) Table border is 3 px and align center.
(v) The color of the heading of the page is orange.
<HTML>
<HEAD>
<TITLE>Save Tiger</TITLE>
</HEAD>
<BODY>
<FONT color = "Orange">
<H1 align = "CENTER"> Save Tiger </H1>
</FONT>
<IMG src = "tiger.jpg" width = "80" height = "80" align = "right">
<FONT color = "green">
<P>
Collect information for<BR>
<U>
<UL>
<LI>Addressing issues</LI>
<LI>State wise agenda</LI>
<LI>What can I do</LI>
<LI>Join the rear</LI>
</UL>
</U>
<TABLE border = "3" align = "center">
<TR>
<TD>1</TD>
<TD>Speak Up</TD>
</TR>
<TR>
<TD>2</TD>
<TD>Lead the Change</TD>
</TR>
<TR>
<TD>3</TD>
<TD>Donate</TD>
</TR>
<TR>
<TD>4</TD>
<TD>Be informed</TD>
</TR>
</TABLE>
<P>
For further enquiries <A href = "Contact.html">Contact Us</A>
</P>
</FONT>
</BODY>
</HTML>
Case Study 1
Raman had applied for job in a company via email last week. Today he received a mail from HR department of the company regarding his interview date. His interview will be conducted online (due to Covid-19) using video conferencing and instant messaging software. Answer the following questions in reference to the given situation.
(i) What is video conferencing?
(ii) Name any two hardware which is required for video conferencing.
(iii) Write any two features of instant messaging software.
(iv) Name two types of instant messaging software.
(i) A two-way videophone conversation among multiple participants by using computer networks to transmit audio and video data, is called Video Conferencing.
(ii) Two hardware devices which are required for video conferencing are:
(iii) Two features of instant messaging software are:
(iv) Two types of instant messaging software are:
Case Study 2
Rajiv recently learned about IPR. He owns a business which makes custom-made gifting items. His work, ideas can be easily copied. He also has a few partners in his business who are not very loyal. So, he has decided to put his knowledge of IPR into action and protect his business.
Answer the following questions.
(i) What rights will Rajiv have through IPR?
(ii) What are the advantages of IPR?
(iii) Write any two violations of IPR.
(iv) Mention any two controls of IPR.
(i) Intellectual property rights are the rights given to persons over the creations of their minds. Rajiv reserves all the rights to the information to decide, how much information is to be exchanged, shared or distributed. He can exercise these rights in the form of patents, copyright or trademark.
(ii) The advantages of IPR are:
(iii) Two violations of IPR are:
(iv) Two controls of IPR are: