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

Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 4 | 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. What is <tr> tag? Define any two attributes of it.

The HTML <tr> tag defines a row in an HTML table. Each <tr> tag can contain one or more <th> tags that define header cells in the table or one or more <td> tags that define standard cells in the table. This tag is also commonly referred to as the <tr> element.
Two attributes of <tr> tag are
align Horizontal alignment of text in each cell within the row. It can be one of the following values: left, center, right, justify.
bgcolor Background color of each cell within a row.


Q.2. What is a search engine?

OR

Differentiate between Web browser and Web server.

A search engine is a tool designed to search the web for information according to the given keywords. Search engines enable the users to find information and websites of specific interest or use to them. Ex: www.google.com, www.yahoo.com, www. bing.com
OR
Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 4 | CBSE Sample Papers For Class 10


Q.3. What are the attributes of audio tag?

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


Q.4. Why style sheets are used?

The main use of CSS is to improve HTML pages be decorating them, and displaying them in a better way than they would normally do. They simplify the web creator work by using one CSS style sheet for more than one document.


Section - B

Q.5. Explain Telnet with its advantage.

Telnet is a network protocol which allows the user to get connected to other hosts via remote login. Telnet remote login is widely used for file sharing.
Following are the benefits or advantages of TELNET:
(i)
It can be used to send/receive information.
(ii) It helps in administration of the network elements.
(iii) It supports user authentication.
(iv) All the TELNET clients and servers implement a network virtual terminal (NVT).
(v) Automation test facilities are used by remote computers on shared basis.


Q.6. “Use of e-governance has its social and economic impacts.” Justify.

E-Governance harnesses information technologies (such as Wide Area Networks, the internet, and mobile computing) to transform relations with citizens, businesses, and other arms of government.
These technologies can serve a variety of different ends; better delivery of government services to citizens, improved interactions with business and industry, citizen empowerment through access to information, or more efficient government management. The resulting benefits can be less corruption, increased transparency, greater convenience, revenue growth, and/or cost reductions.


Q.7. Write a short note on TCP/IP.

OR

Why do we need computer networks?

TCP/IP stands for Transmission Control Protocol / Internet Protocol.
TCP/IP is a set of rules and regulation (protocols) governing communications among all computers on the Internet. More specifically, TCP/IP dictates how information should be packaged (turned into bundles of information called packets), sent, and received, as well as how to get to its right destination. TCP/IP is a combination of two separate protocols: TCP (Transmission Control Protocol) and IP (Internet Protocol).
The Internet Protocol standard dictates the logistics of packets sent out over networks; it tells packets where to go and how to get there.
The Transmission Control Protocol is responsible for ensuring the reliable transmission of data across Internet-connected networks. TCP checks packets for errors and submits requests for retransmissions if any are found.
OR
(i) Networks enable resource sharing across the globe.
(ii) Networks provide high reliability by having alternate copies of data. Presence of multiple CPUs means that if one goes down, the others may be able to take over its task. This ability to work in the face of hardware problems is of at most importance in military, banking, air traffic control, nuclear reactor safety, etc.
(iii) Networks enable a client/server model with clients as small computers, one per user, with data kept on one or more shared file server machines. e.g. Software installation can be done on server and this can save cost of buying license for every machine.


Section - C

Q.8. Read the case study given below and attempt any 4 sub-questions (out of 5).
e-business, commonly known as electronic or online business is a business where an online transaction takes place. In this transaction process, the buyer and the seller do not engage personally, but the sale happens through the internet. In 1996, Intel’s marketing and internet team coined the term “E-business
e-Commerce stands for electronic commerce and is a process through which an individual can buy, sell, deal, order and pay for the products and services over the internet. In this kind of transaction, the seller does not have to face the buyer to communicate. Few examples of e-commerce are online shopping, online ticket booking, online banking, social networking, etc.
(i) The primary source of financing during the early years of e-commerce was _______
(ii) Out of C2B, B2C, B2B, C2C, which one is not a major type of e-commerce?
(iii) Which segment do eBay and Amazon belong to _______
(iv) Mr. Abhi is working in BPO in which he has some work related to E-Commerce. Help him to know about e-Commerce.
(v) The best products to sell in B2C e-commerce are ______.

(i) venture capital funds
(ii) Consumer-to-business (C2B) is not a major type of e-commerce.
(iii) Amazon and eBay belong to B2C
(iv) e-Commerce means buying and selling products online.
(v) The best products to sell in B2C e-commerce are digital products.


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) - 4 | CBSE Sample Papers For Class 10
Specification-1: The HTML code structure should be proper.
Specification-2: The value of the table border attribute should be 1. Table header tag should be used wherever required.
Specification-3: The table should exactly contain 4 rows and 5 columns. The data in each cell should be as shown in the above table.
Specification-4: Attribute rowspan should be used wherever required.
Specification-5: Attribute colspan should be used wherever required.

<HTML>
<HEAD>
<TITLE>Table</TITLE>
</HEAD>
<BODY>
<TABLE border=”1”>
<TR align = “center”>
<TH rowspan=”2”> SERIAL NO</TH>
<TH rowspan=”2”>CLASS</TH>
<TH colspan=”3”>NUMBER OF STUDENT</TH>
</TR>
<TR>
<TD>ENGLISH</TD>
<TD>HINDI</TD>
<TD>REGIONAL</TD>
</TR>
<TR align=”center”>
<TD>1</TD>
<TD>XA</TD>
<TD>35</TD>
<TD>10</TD>
<TD>6</TD>
</TR>
<TR align=”center”>
<TD>2</TD>
<TD>XB</TD>
<TD>31</TD>
<TD>15</TD>
<TD>4</TD>
</TR>
</TABLE>
</BODY>
</HTML>

The document Class 10 Computer Science: CBSE Sample Question Paper- Term II (2021-22) - 4 | 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

Semester Notes

,

practice quizzes

,

Important questions

,

Objective type Questions

,

Sample Paper

,

study material

,

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

,

Free

,

past year papers

,

pdf

,

Viva Questions

,

MCQs

,

Previous Year Questions with Solutions

,

mock tests for examination

,

Summary

,

Extra Questions

,

shortcuts and tricks

,

video lectures

,

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

,

ppt

,

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

,

Exam

;