Loading...
Please wait while we prepare your content
Please wait while we prepare your content
Solutions for Computer Applications, Class 10, CBSE
............... is software that may not be freely used, modified, distributed, and is restricted by conditions predefined by its publisher, vendor, or developer.
Proprietary software
Reason — Proprietary software is a copyrighted software. This software may not be freely used, modified, distributed, and is restricted by conditions predefined by its publisher, vendor, or developer.
Which of these is an example of an e-reservation website?
irctc.co.in
Reason — IRCTC (Indian Railway Catering and Tourism Corporation) is a popular website that allows users to make electronic reservations for train tickets and related services.
Which one of the following is a well-known free e-mail service?
Reason — Gmail is a widely used email service provided by Google and is known for its free email accounts. Flipkart, Amazon and Myntra are online shopping platforms.
Which of these is a standard Internet Protocol for exchanging files between two or more computers on the internet over TCP/IP protocols?
FTP
Reason — FTP (File Transfer Protocol) uses TCP/IP protocols to upload or download files to our computers from other sources.
Choose the most appropriate statement which best represents the use of e-governance.
Online service where government offers services to citizens
Reason — E-governance offers citizens easy online access to government services and information.
Choose the service that allows you to include multimedia content along with messages.
MMS
Reason — Multimedia Messaging Service (MMS) enables users to send text messages along with multimedia content such as images, videos, and audio to other mobile devices.
Which of the following protocols allows you to retrieve e-mails from a remote server using a local account?
POP3
Reason — Post Office Protocol version 3 is a standard email protocol which allows users to download emails from the server to their devices for offline reading.
............... is the correct HTML element for playing an audio file.
audio
Reason — <audio>
is the correct HTML element for playing an audio file.
Which tag can Misha use to draw a line in her HTML page?
<br>
<HR>
<line>
<ruler>
<HR>
Reason — Misha can use <HR>
tag to draw a line in her HTML page.
Help Anju choose the correct HTML code to generate a numbered list, with numbering starting from capital letter C.
<OL TYPE="a" START="A">
<OL TYPE="A" START="3">
<OL TYPE="a" BEGIN="A">
<UL TYPE="A" START ="l">
<OL TYPE="A" START="3">
Reason — To generate a numbered list starting from "C", we can use the following HTML code:
<OL TYPE="A" START="3">
Here, Type attribute specifies the type of numbering i.e. "A" and Start attribute specifies the starting value i.e. "3".
Assertion (A): The head section of HTML defines the overall basic layout of an HTML document.
Reason (R): The title section contains the text and other content included in a web page that is displayed in its browser view.
Assertion (A) is true and Reason (R) is false.
Reason — The head section of HTML contains character set, styles and links to external resources that defines the overall basic layout of an HTML document.
The body section and not the title section contains the text and other content included in a web page that is displayed in its browser view.
Assertion (A): A web browser acts as an interface between a user and the World Wide Web.
Reason (R): A user can navigate files, folders, and websites using links on the web pages created with HTML.
Both Assertion (A) and Reason (R) are true, and Reason (R) is a correct explanation of Assertion (A).
Reason — Assertion (A) is true because a web browser serves as the user's interface to access and interact with the World Wide Web.
Reason (R) is also true and provides a correct explanation of Assertion (A). A user can indeed navigate files, folders, and websites using links on web pages created with HTML.
What is e-learning? State an advantage of e-learning.
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.
One significant advantage of e-learning is Flexibility. Learners can access educational content and participate in courses at their own pace and convenience.
Write any two disadvantages of mobile banking.
Two disadvantages of mobile banking are:
Write any two advantages of social networking.
Two advantages of social networking are:
What is the Digital India movement? Give an example of a service provided under this initiative.
Digital India movement, launched on July 1, 2015 by the honourable Prime Minister Mr. Narendra Modi, aims to elevate India's technological status and offer online services to its citizens.
E.g. Aadhaar
"Intellectual property rights are the legal property rights of people over their creation". Mention any two types of Intellectual property rights.
Two types of Intellectual property rights are:
"Privacy is defined as the right to control what happens with your personal information". Mention two ways to limit your data exposure online.
Two ways to limit our data exposure online are:
"Radio buttons let a user select one of a limited number of choices". Give an example showing the use of a radio button in HTML forms.
An example showing the use of a radio button in HTML form is as follows:
<HTML>
<BODY>
<FORM>
Gender :
<BR>
<INPUT TYPE = "RADIO" ID = "R1" NAME = "GENDER" VALUE = "MALE" CHECKED/>
<LABEL FOR = "R1"> Male </LABEL>
<BR>
<INPUT TYPE = "RADIO" ID = "R2" NAME = "GENDER" VALUE = "FEMALE" />
<LABEL FOR = "R2"> Female </LABEL>
<BR>
<INPUT TYPE = "SUBMIT" NAME = "Process Order" VALUE = "Submit" />
<INPUT TYPE = "RESET" NAME = "Clear" VALUE = "Reset" />
</FORM>
</BODY>
</HTML>
Write the difference between the colspan and rowspan attributes of an HTML table and give one example of each.
Differences between Colspan and Rowspan attributes of a table are:
S. No. | Colspan | Rowspan |
---|---|---|
1. | COLSPAN is used to combine the cells horizontally. It specifies the number of columns that the cells span across and shows them as a single cell. | ROWSPAN is used to combine the cells vertically. It merges the number of cells vertically and displays them as a single cell. |
2. | E.g. <TD Colspan = "4"> where 4 is the number of columns that the cells span across. | E.g. <TD Rowspan = "3"> where 3 is the number of rows that the cells span across. |
Giving examples, write the difference between a text box and a drop-down list.
S. No. | Textbox | Drop-down list |
---|---|---|
1. | A Textbox allows a user to enter alphanumeric data that is a combination of characters and numbers. | A drop-down list displays a list of options from which the user can select an item. |
2. | For eg, <FORM> Name: <INPUT TYPE = "TEXT"> </FORM> | For eg, Gender: <FORM> <SELECT NAME = "GENDER"> <OPTION VALUE = "MALE"> Male </OPTION> <OPTION VALUE = "FEMALE"> Female </OPTION> </SELECT> </FORM> |
"CSS comprises of style rules that are interpreted by the browser and then applied to the corresponding elements in your document." Illustrate the use of Property and Value style rules in CSS.
Property defines how the elements with distinctive styles should look on the web page. For example, Font-family, color, background, border, etc.
Values are assigned to properties. For example, the value of font-family property can have font names like Monotype Corsiva, Times New Roman, Arial,etc.
Consider the following example in which the paragraph is to be displayed in blue color and the font is Arial:
P
{
Font-family: Arial; Color: Blue;
}
"Open Source refers to something that is publicly accessible, and therefore, can be modified and shared by anyone." What is open source software? Write the difference between open source and free software.
Open source software is the software, whose source code is freely available and which can be copied, modified and redistributed as well. For example, Linux.
Difference between open source and free software:
S. No. | Open Source Software | Free Software |
---|---|---|
1. | Open source software refers to software whose source code is made available to the public, allowing anyone to view, use, modify, and distribute the code. | Free software refers to software that respects users' freedoms. |
2. | Open source emphasizes the practical benefits of transparency, collaboration, and the ability to modify and distribute software freely. | Free software emphasizes the philosophical and ethical aspects of software freedom focusing on users' rights to control and modify the software they use. |
3. | Open source software can be released under various licenses, some of which are more permissive like BSD, MIT, Apache 2. | Free software adheres to specific licenses like the GNU General Public License (GPL) that ensures users' freedoms. |
Hyperlinks are the highlighted text segments or images that connect to other pages on the web. Based on this, answer the following questions:
a. Which tag is used to create a hyperlink and the attribute used to specify the path of the document to be linked?
b. Give an example of how an image "hello.jpg" can be used as a hyperlink.
c. What are internal links and external links in HTML?
a. The anchor tag <A>
is used to create a hyperlink. The Href attribute is used to specify the path of the document to be linked.
b. Example of using image as a hyperlink:
<A href="https://www.example.com">
<IMG src="hello.jpg" alt="Hello Image">
</A>
In this example, when a user clicks on the "hello.jpg" image, it will act as a hyperlink and take them to the "https://www.example.com" web page.
c.
Internal Links — When one part of a web page is linked to another section of the same page, it is called an internal link. For example,<A HREF = "#section2"> Jump to Section 2 </A>
Here, the "#" symbol followed by "section2" refers to an internal link within the same page to a section with the name "section2."
External Links — When one page is linked to another web page or website, it is called external linking. For example,<A HREF = "https://www.example.com"> Visit Example Website </A>
Here, the hyperlink points to an external website, "https://www.example.com," which is outside the current website's domain.
Write the equivalent inline CSS for the following:
a. <body bgcolor="blue">
b. <p style="color:blue;">Example</p>
a. <body style="background-color: blue;">
b. <p style="color: blue;">Example</p>
a. Write an external CSS code snippet to set the colour of the web page as pink.
b. Write an inline CSS code to set the Font size for a paragraph as 15.
a. An external CSS code snippet to set the colour of the web page as pink is as follows:
body
{
background-color: pink;
}
b. An inline CSS code to set the Font size for a paragraph as 15 is as follows:
<P style="font-size: 15px;"> ...content... </P>
Karan has recently started working as a content writer. Suggest the steps he can take to avoid plagiarism.
The steps Karan can take to avoid plagiarism are:
Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for any four specifications out of the given five.
Specification 1: Heading of the web page should be "Project Tiger". The links in the page should be green, active links should be pink, and visited links should be orange.
Specification 2: The image "tiger.jpg" is to be inserted below the heading.
Specification 3: The table consists of 6 rows and 2 columns and has border size as 2.
Specification 4: The column heading "Success of the Project Tiger Mission" occupies two columns.
Specification 5: In the last line, "Join the mission!" should be a link to the website "projectiger.com".
<HTML>
<HEAD>
<TITLE>
Project Tiger
</TITLE>
</HEAD>
<BODY LINK = "GREEN" ALINK = "PINK" VLINK = "ORANGE">
<H3 ALIGN = "CENTER"> Project Tiger </H3>
<CENTER>
<IMG SRC = "TIGER.JPG" ALT = "IMAGE OF TIGER">
</CENTER>
<TABLE ALIGN = "CENTER" BORDER = "2">
<TR>
<TH COLSPAN = "2"> Success of the Project Tiger Mission</TH>
</TR>
<TR>
<TH> Year </TH>
<TH> Number of Tigers</TH>
</TR>
<TR ALIGN = "CENTER">
<TD> 2006 </TD>
<TD> 1411</TD>
</TR>
<TR ALIGN = "CENTER">
<TD> 2010</TD>
<TD> 1706</TD>
</TR>
<TR ALIGN = "CENTER">
<TD> 2014</TD>
<TD>2226 </TD>
</TR>
<TR ALIGN = "CENTER">
<TD>2018 </TD>
<TD>2967 </TD>
</TR>
</TABLE>
<P ALIGN = "CENTER">
<A HREF = "https://PROJECTTIGER.COM"><B>Join the Mission!</B></A>
</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 any four specifications out of the given five.
Specification 1: The heading "Types of Artificial Intelligence" should be a third level heading and the background colour of the page should be aqua.
Specification 2: The page should consist of a list and data as shown in the image.
Specification 3: A video "AItypes.mp4" should be embedded below the list.
Specification 4: The video should have controls to enable the user to play it, manage the volume, etc.
Specification 5: The last line "Click the play button to view more information about Artificial Intelligence" should be inserted as a paragraph.
<HTML>
<HEAD>
<TITLE>
Types of Artificial Intelligence
</TITLE>
</HEAD>
<BODY BGCOLOR = "AQUA">
<H3> Types of Artificial Intelligence </H3>
<DL>
<DT> Artificial Narrow Intelligence </DT>
<DD> Artificial Narrow Intelligence (ANI) is an AI system that can perform narrowly defined specific tasks and thus has narrow capabilities. </DD>
<DT> Artificial General Intelligence (AGI)</DT>
<DD> AGI, also known as strong AI, can learn any intellectual task that a human can. </DD>
<DT> Artificial Super Intelligence (ASI)</DT>
<DD> Artificial Super Intelligence will surpass human intelligence and will be able to perform any task better than a human.</DD>
</DL>
<VIDEO Controls SRC = "AITypes.mp4"> </VIDEO>
<P> Click the play button to view more information about Artificial Intelligence </P>
</BODY>
</HTML>
Case Study 1
Consider the following code created by Snehal for the given web page:
<html>
<Head><Title> Form Elements<...............></Head> --- Statement 1
<............... bgcolor=" lightCyan "> --- Statement 2
<FORM>
Login:
<INPUT Type= "Text" Name= "Name" Size= 30 Value="">
Password:
<INPUT Type= "..............." Name= "code" Size=30 Value=""> --- Statement 3
<P>Course interested in:</P>
<INPUT Type="..............." Name= "HTML" Value= "HTML"/> HTML --- Statement 4a
<INPUT Type="..............." Name= "PYTHON" Value= "PYTHON" >PYTHON --- Statement 4b
<INPUT Type="..............." Name= "C++" Value= "C++" > --- Statement 4c
</Form>
<p> To upload your identity proof click <................>="www.kyc.com">KYC.com</a></p>
- Statement 5
</body>
</html>
Based on the given information, answer the questions:
a. Write the tag to complete Statement 1.
b. Write the suitable option for the blank given in Statement 2.
c. Write the appropriate answer for the blank given in Statement 3, such that the input is masked while the user enters the form.
d. Write the appropriate answer for the blank given in Statement 4a, 4b, and 4c to display the input elements as shown in the web page.
e. Write the appropriate answer for the blank given in Statement 5 to show the link of the web page.
a. </title>
b. <BODY>
c. <INPUT Type= "PASSWORD" Name= "code" Size=30 Value="">
d.
<INPUT Type="CHECKBOX" Name= "HTML" Value= "HTML"/> HTML
<INPUT Type="CHECKBOX" Name= "PYTHON" Value= "PYTHON" >PYTHON
<INPUT Type="CHECKBOX" Name= "C++" Value= "C++" >
e. <p> To upload your identity proof click <a href="www.kyc.com">KYC.com</a></p>
Case Study 2
Poonam placed an order for some branded shoes from a freshly launched online shopping site during a festival sale. After she received the product, she realised it was just a fake copy of the original brand. Poonam called up the helpline number of the online shopping site but was told that there is a no-returns policy for shoes. Poonam realises that she should have taken precautions before placing an order for a product online.
Based on the given information, answer the questions given below. Attempt any four questions.
a. Which type of cybercrime is Poonam a victim of?
b. Why is there an increase in online frauds?
c. State at least two precautions that Poonam should have taken to prevent the fraud.
d. Name any two types of frauds that take place while shopping online.
e. Mention any two ways to prevent frauds while shopping online.
a. Poonam is a victim of Counterfeit Product Fraud, which involves receiving fake or imitation goods instead of genuine products as advertised.
b. There is an increase in online frauds because of the following reasons:
c. Two precautions that Poonam should have taken to prevent the fraud are as follows:
d. Two types of frauds that take place while shopping online are:
e. Two ways to prevent frauds while shopping online are: