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

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

Class-X

Time: 120 Minutes

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 an anchor tag? Also, define its attribute href.

HTML anchor tag defines a hyperlink that links one page to another page. It can create hyperlink to other web page as well as files, location, or any URL. The “href” attribute is the most important attribute of the HTML tag, and which links to destination page or URL.
href attribute of HTML anchor tag.
The href attribute is used to define the address of the file to be linked. In other words, it points out the destination page.
The syntax of HTML anchor tag is given below:
<a href = “...........”> Link Text </a>

Q.2. Sarvesh, a student of Class X, is not able to understand the difference between web client and webserver. Help him in understanding the same by explaining their role and give suitable example of each.

OR

Differentiate SMS and MMS.

Web-Client: An application (Web Browser, Chatting Program, etc.) that requests for services from a web-server.
Example: A Web Browsers, Chatting Applications.
Web-Server: Web-server is software (or any dedicated computer running this software) that serves the request made by the web-clients.
Example: Apache Server

OR

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

Q.3. Write HTML code for the following: 
To provide hyperlink to a website “http://www.cbse.nic.in’’

<html>
<head>
<title>
link
</title>
</head>
<body>
<a href=”http://www.cbse.nic.in”>
www.cbse.nic. in </a>
</body>
</html>

Q.4. Explain CSS with reference to DHTML.

CSS is a style sheet language used for describing the look and formatting of a document written in a markup language. It is a way to provide style to HTML. Whereas the HTML is the document of content, the style sheet is the presentation of that document. DHTML is merely a browser feature or enhancement that gives your browser the ability to be dynamic.


Section - B

Q.5. What is the difference between HTTP and HTTPS?

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

Q.6. Mention the services which are provided by transactional category of an e-banking.

(i) There are no geographical barriers and the services that can be offered at a minimum cost.
(ii) Through Internet banking, you can check your transactions at any time and as many times as you want to.
(iii) If the fund transfer has to be made outstation, where the bank does not have a branch, the bank would demand outstation charges, whereas with the help of online banking, it will be absolutely free for you.
(iv) Internet banking deploys the Internet as a medium for financial transaction. e.g. a customer login to his or her bank account by accessing the bank Website.

Q.7. In how many ways can we access the internet?

OR

Students use the Internet quite frequently to study. Discuss the advantages and disadvantages of this for the student.

In the following ways, we can access the internet:
(i) Dial-up Connection: It uses a telephone line or cable to dial into an ISP and a modem attached to a computer. The ISP helps establish a modem to modem link, which is then routed to the internet. The user is connected temporarily to the internet through any service provider.
(ii) Broadband Connection: It is a high speed Internet access. Broadband connectivity doesn't even disturb the telephone use. It carries both voice and data over a single wire. Voice uses the lower end of frequency spectrum while the data uses the higher end. Broadband connection speeds are measured in mbps (megabits of data per second).
Broadband service is available in three ways:
(a) Cable Modem
(b) DSL (Digital Subscriber Line)
(c) Satellite
(iii) Wireless Internet Connection: It involves the use of technologies such as Wi-Fi, WiMAX and satellites. The wireless technology uses radiowaves and microwaves for transmission of data. 

OR

Advantages:
(i) 
Latest information available.
(ii) Easier to produce neatly presented work.
(iii) Huge amount of information.
(iv) Faster access to information.
Disadvantages:
(i) Danger of accessing doubtful websites.
(ii) Inefficient searching.
(iii) Credibility of information.
(iv) Can get easily distracted.


Section - C

Q.8. Read the case study given below and attempt any 4 sub-questions (out of 5):
Mobile technology is a technology where the user uses mobile phone to do the operations related to communication system, for example to establish communication with friends, relatives and others. It uses to transmit the data from one system to others. Mobile Technology consists of portable two way communications systems, computing devices, and the related networking equipment. Mobile technology is a technology which is used primarily in cellular communication system and other related aspects. It uses a network type in which several transmitters are able to send data on a single channel at the same time. This model is known as Code-Divisions Multiple Accesses . This platform allows many users to use single frequencies, as it limits the possibility of frequency interference from two or more sources. Over the years, the channel has grown. Mobile technology is evolving rapidly; its applications are becoming increasingly diverse over the years and are gradually replacing some similar sources on the market that are also used for communication, e.g. post office and land lines. Mobile technology has improved from a basic phone call and texting device into a multi-tasking system used for GPS navigation, internet browsing, gaming, instant messaging, etc. With the rise, professionals argue that computer technology's future depends on wireless networking and mobile computing. Mobile technology is becoming more and more popular through tablets and portable computers.
(i) In which one code with specific characteristics can be applied to the transmission?
(ii) Out of TCP, GPRS and GSM offers packet mode data transfer service over the cellular network?
(iii) Out of CDMA, TDMA and FDMA enables us to use the entire bandwidth simultaneously? 
(iv) Mobile Computing allows transmission of data from one wireless-enabled device to another.
(v) GSM stands for
.

(i) Code Division Multiple Access (CDMA)
(ii) General Packet Radio System (GPRS)
(iii) CDMA
(iv) Wireless-enabled device
(v) GSM stands for Global System for Mobile Communications.

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 Application: CBSE Sample Question Paper- Term II (2021-22) - 1 | CBSE Sample Papers For Class 10
Specification-1: The HTML code structure should be proper. Heading 'HTML TABLE' should be the first level of heading and Background color of the page should be Yellow.
Specification-2: The value of the table border attribute should be 2. Table header tag should be used wherever required.
Specification-3: The table should exactly contain 4 rows and 4 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>
</HEAD>
<BODY bgcolor="Yellow">
<H1>HTML TABLE</H1>
<TABLE border="2">
<TR>
<TH>Employee Code</TH>
<TH>Name</TH>
<TH>Salary</TH>
<TH>City</TH>
</TR> <TR>
<TD>101</TD>
<TD>FN1</TD>
<TD>12000</TD>
<TD>Meerut</TD>
</TR>
<TR>
<TD>102</TD>
<TD>FN2</TD>
<TD>18000</TD>
<TD rowspan="2">Pune</TD>
</TR>
<TR>
<TD>103</TD>
<TD colspan="2">FN3 15000</TD>
</TR>
</TABLE>
</BODY>
<HTML>

The document Class 10 Computer Application: CBSE Sample Question Paper- Term II (2021-22) - 1 | 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
363 docs|7 tests

FAQs on Class 10 Computer Application: CBSE Sample Question Paper- Term II (2021-22) - 1 - CBSE Sample Papers For Class 10

1. What is the structure of the Class 10 Computer Science Sample Question Paper for Term II?
Ans. The Class 10 Computer Science Sample Question Paper for Term II typically consists of three sections: Section A, Section B, and Section C. The total duration for the exam is 120 minutes, and it carries a maximum mark of 25. Each section may include a variety of question types, such as multiple-choice questions, short answer questions, and practical-based questions.
2. How should students prepare for the Class 10 Computer Science exam?
Ans. Students should start by reviewing the syllabus and understanding the key concepts outlined in the curriculum. Regular practice of previous years' question papers and sample papers can help familiarize them with the exam format. Additionally, students should focus on hands-on practice with programming languages and tools covered in the course, as practical knowledge is often assessed.
3. What types of questions can be expected in the Class 10 Computer Science exam?
Ans. In the Class 10 Computer Science exam, students can expect a mix of question types including multiple-choice questions, fill-in-the-blanks, short answer questions, and programming-related problems. There may also be questions that require students to explain concepts or apply knowledge to solve practical problems.
4. Are there any specific topics that students should focus on for the Class 10 Computer Science exam?
Ans. Yes, students should pay attention to fundamental topics such as data types, control structures, functions, and object-oriented programming principles. Additionally, understanding the basics of algorithms, data structures, and software development practices is crucial, as these are commonly covered in the exam.
5. How important is practical knowledge in the Class 10 Computer Science exam?
Ans. Practical knowledge is very important in the Class 10 Computer Science exam as it helps students apply theoretical concepts in real-world scenarios. The exam may include practical assessments or questions that require students to write code or troubleshoot programming issues. Therefore, hands-on practice is essential for success in the exam.
Related Searches

video lectures

,

Extra Questions

,

Sample Paper

,

Summary

,

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

,

past year papers

,

pdf

,

Important questions

,

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

,

Exam

,

practice quizzes

,

Free

,

Previous Year Questions with Solutions

,

Semester Notes

,

ppt

,

study material

,

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

,

MCQs

,

shortcuts and tricks

,

mock tests for examination

,

Objective type Questions

,

Viva Questions

;