Loading...
Please wait while we prepare your content
Please wait while we prepare your content
Solutions for Computer Applications, Class 10, CBSE
Right to information
Reason — Right to information refers to a citizen's right to access information that is held by the state.
Post Office Protocol version 3
Reason — POP3 stands for Post Office Protocol version 3. POP3 helps to retrieve e-mails from a remote web server using a local client.
Assertion (A) In telecommunications, 4G is the Fourth Generation of mobile phone communication standards.
Reason (R) A 4G system provides mobile ultra-broadband Internet access.
Both A and R are true and R is a correct explanation of A.
Reason — A is true as in telecommunications, 4G is the Fourth Generation of mobile phone communication standards. R is true as a 4G system provides mobile ultra-broadband Internet access.
Assertion (A) When <BR> tag is used before an image, the image moves to the next line.
Reason (R) <BR> tag is used to insert a line break which means the test/image following the tag will be moved to the next line when displayed in the browser.
Both A and R are true and R is a correct explanation of A.
Reason — A is true as when <BR> tag is used before an image, the image moves to the next line. R is true and it correctly explains assertion A as <BR> tag is used to insert a line break which means the test/image following the tag will be moved to the next line when displayed in the browser.
Mobile Banking refers to making financial transactions using a mobile device like a smartphone, tablet, etc. Mobile banking apps offer a convenient and secure way to manage one's finances, without the need to visit a bank branch or ATM.
The attributes of <SELECT> tag which are used to create drop down menus are:
Secure Electronic Transaction (SET) is a protocol designed to enhance the security of electronic payments over the internet. It was developed by Visa and Mastercard and it ensures confidentiality, integrity, and authentication of online transactions.
SET employs digital certificates and encryption to safeguard sensitive information, providing a secure environment for e-commerce by protecting against fraud and unauthorized access to payment data.
The advantages of Secure Sockets Layer (SSL) are:
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.
The SMTP standard defines the conversation between the sender of the e-mail and the SMTP mail server that delivers the mail. In a SMTP conversation, the sender issues a certain sequence of commands to the receiving SMTP server. Generally, if the sender issues valid commands and the intended recepients of the e-mail are valid accounts on the receiving server, the receiving server will accept the message and attempt to deliver it.
Radio Button | Checkbox |
---|---|
Radio buttons are used when we want users to select only one option from a set of choices. | Checkboxes are used when we want users to select multiple options from a list. |
Radio buttons are typically represented as small circles or dots, and users can select only one of them at a time. | Checkboxes are typically represented as small square boxes with a check mark inside them. |
Selecting one option automatically deselects any previously selected option within the same group. | Users can check or uncheck checkboxes independently. |
Two attributes of <TD> tag are:
Freedom of information refers to the right to access information available on public platforms. Freedom of Information was established for transparency, government accountability, education and general public protection against mismanagement and corruption.
<OL TYPE = "1">
<LI>Fruits</LI>
<OL TYPE = "1">
<LI>Mango</LI>
<LI>Orange</LI>
</OL>
<LI>Vegetables</LI>
<OL TYPE = "1">
<LI>Cabbage</LI>
<LI>Capsicum</LI>
<OL TYPE = "1">
<LI>Green Capsicum</LI>
<LI>Yellow Capsicum</LI>
<LI>Red Capsicum</LI>
</OL>
</OL>
</OL>
Cascading Style Sheet is a programming specification markup language used for web development. It is a collection of rules called styles that affect the visual appearance of contents of a web page. CSS can set colors, fonts, backgrounds, borders, margins and even the placement of elements on a web page.
(i) The dir attribute of HTML tag specifies the direction of an element's text. This attribute can have the values either ltr (left to right) or rtl (right to left). By default, the value of dir attribute is ltr.
(ii) The equivalent inline CSS for the following HTML tags is as follows:
(a) <body style = "background-color: red;">
(b) <img src = "garden.jpg" style = "height: 15px; width: 30px;">
<TABLE border = "1">
<TR>
<TH>Roll Number</TH>
<TH>Name</TH>
<TH>Class</TH>
</TR>
<TR>
<TD align = "center">105</TD>
<TD>Amit</TD>
<TD>12 A</TD>
</TR>
<TR>
<TD align = "center">106</TD>
<TD>Ankit</TD>
<TD>12 B</TD>
</TR>
<TR>
<TD align = "center">107</TD>
<TD>Arnab</TD>
<TD>12 C</TD>
</TR>
<TR>
<TD>Footer 1</TD>
<TD>Footer 2</TD>
<TD>Footer 3</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 the given specifications.
(i) Title of the page is "People's Public School".
(ii) Link color is "Fuchsia".
(iii) Font face for the page is "Calibri".
(iv) The color of heading of the page is "Red".
(v) Image used as school.jpg.
<HTML>
<HEAD>
<TITLE> People's Public School </TITLE>
</HEAD>
<BODY LINK = "fushia">
<FONT FACE = "CALIBRI">
<FONT COLOR = "RED">
<CENTER>
<H1> WELCOME <BR> To <BR> PEOPLE'S PUBLIC SCHOOL </H1>
</FONT>
<IMG SRC = "SCHOOL.JPG" ALT = "Image of school">
</CENTER>
<P>
Welcome to <I>People's Public School</I>. We are strongly committed
to the success of our students. Commonly requested information has
been digitized and made available on our site. We encourage your
feedback as we strive to improve our school.
</P>
</FONT>
</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 "Top 5 Films of 2010".
(ii) Font face for the page is "Calibri".
(iii) Link color is "Turquoise".
(iv) The color of heading of the page is "Green".
(v) Image used is bollywood.jpg.
<HTML>
<HEAD>
<TITLE> Top 5 Films of 2010 </TITLE>
</HEAD>
<BODY LINK = "TURQUOISE">
<FONT FACE = "CALIBRI">
<CENTER>
<H1>
<FONT COLOR = "GREEN"> Top 5 Films of 2010 </FONT></H1>
</CENTER>
<B>
<P>
This website is a gateway to <U>film reviews.</U> Following is a list of the top 5 films running successfully in cinema halls in June 2010.
</P>
</B>
<IMG SRC = "BOLLYWOOD.JPG" ALT = "BOLLYWOOD IMAGE" ALIGN = "RIGHT">
<B>
<OL TYPE = "1">
<LI>Rajneeti</LI>
<LI>Prince of Persia</LI>
<LI>House Full</LI>
<LI>Iron Man 2</LI>
<LI>Kites</LI>
</OL>
</B>
<A HREF = "LIST_OF_MOVIES.HTML">
<U>Click here to see the list of upcoming movies</U>
</A>
</BODY>
</HTML>
Case Study 1
Mawana Sugar Private Limited has a head office in Mawana and a large number of branches nationwise. The head office used video conferencing to communicate with the branch managers. But branch manager is not familiar with the term video conferencing. Help him to know the answer of following questions.
(i) What do you mean by video conferencing?
(ii) Identify the requirement for video conferencing.
(iii) What is the most popular software for video conferencing?
(iv) What are the benefits of using video conferencing?
(i) A two-way videophone conversation among multiple participants by using computer networks to transmit audio and video data, is called Video Conferencing.
(ii) The requirements for video conferencing are:
(iii) Skype is the most popular software for video conferencing
(iv) The benefits of using video conferencing are:
Case Study 2
Khushboo is watercolor painting artist. She regularly posts her work on her social media account. One day she noticed that some account has been posting the same artworks as she had shared. Her friends told her that it is called plagiarism. Khushboo then took some measures to complaint about the fake account and decided to be more careful about such things in future.
Answer the following questions.
(i) Define Plagiarism.
(ii) What are the intentions behind plagiarism?
(iii) What precautions can be taken to avoid plagiarism?
(iv) How can you give credit for someone else's work?
(i) Plagiarism is stealing someone else's intellectual work, such as an idea, literary work or academic work etc., and representing it as our own work without giving credit to creator or without citing the source of information.
(ii) The intentions behind plagiarism may be:
(iii) The precautions which can be taken to avoid plagiarism are:
(iv) To avoid plagiarism while referring to someone else's creation, we must give credit whenever we use: