Class 10 Exam  >  Class 10 Notes  >  CBSE Sample Papers For Class 10  >  Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 5

Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 5 | CBSE Sample Papers For Class 10 PDF Download


Class-X

Time: 120

M.M: 25

General Instructions:
Read the following instructions very carefully and strictly follow them:
 

  1. The Question Paper contains three sections A, B and C. Each section is compulsory. 
  2. Section A has 4 questions of short answer type. Each question is of 2 marks. Internal choice is provided in 1 question. 
  3. Section B has 3 questions of Long Answer Type-I (LA-I). Each question is of 3 marks. Internal choice is provided in 1 question. 
  4. Section C has 2 questions of Long Answer Type-II (LA-II). Each question is of 4 marks.

Section - A

Q.1. Write suitable HTML Code to Embed audio and video in a webpage.

HTML Code for Embedding Video : <video controls><source src="https://edurev.gumlet.io/ideoFile.mp4”></video>
HTML Code for Embedding Audio : <audio controls><source src="https://edurev.gumlet.io/udioFile.mp3”></Audio>


Q.2. What do you understand by the term URL? How is it different from an email address?

OR

What do you understand by a newsgroup? How is it different from a blog?

URL stands for Uniform Resource Locator. It is basically a web address that identifies a resource on the internet. An email address is an account on a mail server. The main difference is that an email address contains an ‘@’ sign whereas a URL never has it. An email address does not start with a www.
OR
A newsgroup is an Internet-based discussion group. It is organized around a particular topic, eg cyber safety. People can post messages on the group regarding the topic. Anyone can join a discussion group A blog is more like a website where an individual or group of people write about anything that interests them eg, sports, culture etc. It is usually owned by an individual and we can only post comments on a blog if it is allowed to do so.


Q.3. What is a Hypertext link? Give the name and the syntax for the HTML tag which is used for creating a Hypertext Link.

Hyperlink allows us to link HTML elements (text and/or image) to another document or new section within the current document. Name : anchor tag, Syntax <a href=”Link Address”>Hyperlink Text</a>


Q.4. Rohit, a student of Class X, wants to represent a table in webpage but he is unaware about the table tags. Explain him the role of <tr> and <td> tag. Write HTML code of a table and show the use of <tr> and <td> tag.

<tr> : defines table row.
<td> : defines table data/cell.
HTML Code
<table>
<tr>
<td>1</td>
<td>Ajay</td>
<td>Arts</td>
</tr>
<tr>
<td>2</td>
<td>Vijay</td>
<td>Commerce</td>
</tr> </table>


Section - B

Q.5. What do you mean by first generation? Explan.

1G (First Generation) was introduced in 1980 and was based on narrow band analog cellular technology. It used circuit switching and only voice calls were available. It used radio waves for transmission. 1G used CDMA (Code Division Multiple Access). Each user was allocated a unique code sequence. The sender encoded the signal using the given code. The receiver also had the unique code and used it to decode the data.


Q.6. What precaution must be taken with regard to making payments while shopping online?

(i) Share payment information only with known or reputable vendors.
(ii) Before entering any personal or payment information, make sure that the URL should start with https.
(iii) Look for a small lock icon in web browser.
(iv) Avoid storing information.
(v) Make use of popular and trusted payment portals only.


Q.7. How does WWW work?

OR

Differentiate between SSH and Telnet.

The World Wide Web (WWW) is a network of online content that is formatted in HTML and accessed via HTTP. The term refers to all the interlinked HTML pages that can be accessed over the Internet. The WWW system is based on the client/severs architecture. A web client sends request for information to any web server. This is a program upon receipt of which the server sends the document requested to the requesting client.
Typically, the client program (browser) runs on a separate machine from that of the server. The server takes care of all the issues related to document storage, whereas the task of presenting the information to the user is left to the client program.
The protocol that web clients and servers use to communicate with each other is called the Hypertext Transfer Protocol (HTTP). All web clients and servers must use HTTP in order to send/receive hypermedia documents. For this reason, web servers are often called HTTP servers.
OR
(i) 
SSH offers security mechanisms that protect the users against anyone with malicious intent while Telnet has no security measures.
(ii) SSH uses encryptions to make it harder for the other person to sniff the password and other relevant information while in Telnet, the data is encrypted in plain text, including passwords and can be easily sniffed by others.
(iii) SSH uses public key to authenticate the source of the data while Telnet does not use any authentication.
(iv) SSH adds a bit more overhead to the bandwidth compared to Telnet.


Section - C

Q.8. Read the case study given below and attempt any 4 sub-questions (out of 5).
World Wide Web (WWW) or simply web is a set of programs, standards and protocols that allows the multimedia and hypertext files to be created, displayed and linked on the Internet. The World Wide Web was invented by British scientist Tim Berners-Lee in 1989 while working at CERN. It became publicly available on Internet for the first time. The Internet is the physical network of computers all over the world. The World Wide Web is a virtual network of web sites connected by hyperlinks (or “links”). Websites are stored on servers on the internet, so, the World Wide Web is a part of the Internet. In 1969, the US Department of Defense approved a project named ARPANET. In 1970, NSF created a common network called CSNET. A speedier network NSFnet was built. In 1995, a new name was given to the collection of all networks and was called Internet.
(i) World Wide Web (WWW) is a set of programs, standards and protocols that allows the multimedia and hypertext files to be created, displayed and linked on the _______.
(ii) ARPANET stands for _______.
(iii) The World Wide Web was invented in the year _______.
(iv) The World Wide Web is a virtual network of web sites connected by _______.
(v) In which year, NSF created a common network called CSNET?

(i) Internet
(ii) ARPANET stands for Advanced Research Projects Agency Network
(iii) The World Wide Web was invented in the year 1989.
(iv) The World Wide Web is a virtual network of web sites connected by hyperlinks.
(v) In 1970, NSF created a common network called CSNET.


Q.9. Write the HTML code to design the web page as shown below, considering the specifications as given below. Students can write code for any 4 specifications out of the given 5 specifications.
Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 5 | CBSE Sample Papers For Class 10Specification-1: The HTML code structure should be proper.  The heading text “Smacking Lollies’ should be in Comic Sans font and of red color.
Specification-2: The first two words of the paragraph should be underlined and in italics.
Specification-3: Title of the page should be “Candy World”.
Specification-4: Image should be used in the page is ice.jpg
Specification-5: The bulleted list contains links as specified below:
(i) The text West Delhi is a link to the web page “west.html”
(ii) The text South Delhi is a link to the web page ”south.html”

<HTML>
<HEAD>
<TITLE> Candy World</TITLE>
</HEAD>
<BODY>
<CENTER>
<H1>
<FONT FACE = “Comic Sans” color =”red”>Smacking Lollies</FONT>
</H1>
</CENTER>
<IMG src="https://edurev.gumlet.io/ce.jpg”><BR>
<I><U>Smacking Lollies</U></I> is a new chain of stores selling variety of candies and mouth
watering lollies
<BR><BR>
The following is a list of major outlets of Smacking Lollies:
<UL type=”square”>
<LI><A href=”west.html”>West Delhi</A>-Janak Puri and Rajouri Garden
</LI> <LI><A href=”south.html”>South Delhi</A>-South Extension and Vasant Kunj</ LI>
</UL>
<CENTER>
For enquiries mail to us at enquiry@gmail.com
</CENTER>
</BODY>
</HTML>

The document Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 5 | CBSE Sample Papers For Class 10 is a part of the Class 10 Course CBSE Sample Papers For Class 10.
All you need of Class 10 at this link: Class 10
303 docs|7 tests

Top Courses for Class 10

303 docs|7 tests
Download as PDF
Explore Courses for Class 10 exam

Top Courses for Class 10

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

shortcuts and tricks

,

Semester Notes

,

ppt

,

Free

,

Objective type Questions

,

Important questions

,

Sample Paper

,

Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 5 | CBSE Sample Papers For Class 10

,

practice quizzes

,

Viva Questions

,

Exam

,

Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 5 | CBSE Sample Papers For Class 10

,

Extra Questions

,

past year papers

,

study material

,

Summary

,

mock tests for examination

,

video lectures

,

pdf

,

Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 5 | CBSE Sample Papers For Class 10

,

MCQs

,

Previous Year Questions with Solutions

;