aglasem.com
Schools Admission Mock Test Playground
ClassChoose class
StateSelect state

CBSE Class 10 Sample Paper 2026 Solution for Computer Application

Download CBSE Class 10 Sample Paper 2026 Solution for Computer Application. Here at aglasem.com get answers to all CBSE Model Papers to prepare better for your upcoming board exam 2026. Answer Key / Marking Scheme of Class 10 Computer Application Sample Question Paper 2026 is given below. More Detail
CBSE Class 10 Sample Paper 2026 Solution for Computer Application - Page 1 of 9

About CBSE Class 10 Sample Paper 2026 Solution for Computer Application

CBSE Class 10 Sample Paper 2026 Solution for Computer Application is available here for free download. Published by CBSE for Class 10, this solution can be viewed online or downloaded as a PDF (9 pages). Candidates preparing for Class 10 can use CBSE Class 10 Sample Paper 2026 Solution for Computer Application to understand the exam pattern, the type of questions asked, and the overall difficulty level.

Frequently Asked Questions

How can I download CBSE Class 10 Sample Paper 2026 Solution for Computer Application?

Open this page and click the Download button to save CBSE Class 10 Sample Paper 2026 Solution for Computer Application as a PDF. It is completely free on AglaSem Docs.

Is CBSE Class 10 Sample Paper 2026 Solution for Computer Application free to download?

Yes. CBSE Class 10 Sample Paper 2026 Solution for Computer Application can be viewed online and downloaded as a PDF free of cost on AglaSem Docs.

How many pages does CBSE Class 10 Sample Paper 2026 Solution for Computer Application have?

CBSE Class 10 Sample Paper 2026 Solution for Computer Application contains 9 pages, which you can read online or download together as a single PDF.

Where can I find more Class 10 study material?

You can find more Class 10 question papers, sample papers, syllabus, and answer keys on AglaSem Docs.

CBSE Class 10 Sample Paper 2026 Solution for Computer Application – Text

Read the full text of this solution below — useful to quickly search, copy and reference the content online without downloading the PDF.

📄 View text version (9 pages)

Page 1

CBSE BOARD

SAMPLE
PAPER
2026
SOLUTIONS

DOWNLOAD

Page 2

COMPUTER APPLICATIONS -CODE 165
MARKING SCHEME
CLASS X (2025-26)

Time allowed: 2 Hours Maximum Marks:50

Q No. Section-A Marks
1 (C) Sharing files through Bluetooth 1
(1 mark for correct answer)

2 (D) Transmission Control Protocol/Internet Protocol 1
(1 mark for correct answer)

3 (A) Locating and accessing information through search engines 1
(1 mark for correct answer)

4 (A) vlink 1
(1 mark for correct answer)
5 (A) Set the background color of the webpage 1
(1 mark for correct answer)

6 (C) Making voice calls over the internet 1
(1 mark for correct answer)

7 (C) Hosting websites and delivering content to web browsers 1
(1 mark for correct answer)

8 (B) The gap between those who have access to digital devices and those who 1
do not
(1 mark for correct answer)
9 (A) It is free of cost and can be modified by anyone. 1
(1 mark for correct answer)

10 (D) TELNET 1
(1 mark for correct answer)

11 (C) A is True, but R is False. 1
(1 mark for correct answer)

12 A) Both A and R are True, and R correctly explains A 1
(1 mark for correct answer)

Page 1 of 7

Page 3

Q No. Section-B Marks

13 Comments help in explaining the code and making it more readable. 2
Syntax: <!-- This is a comment -->
(1 mark for correct importance)
(1 mark for correct syntax)

14 A This approach is called online learning/e-learning/digital 2
learning.

Two advantages:
 Flexibility
 Access to a wide range of resources.
(1 mark for correct mention of approach)
(1 mark for two correct advantages)

OR
B A web address (URL) is used to locate a website.
Web address (URL) is used to locate a website while an email address is
used to send and receive emails.
(1 mark for correct definition)
(1 mark for correct difference)

15 Aarav can use the bgcolor attribute to set the background color and the text 2
attribute to set the text color in HTML.
Example:
<body bgcolor="yellow" text="red">
(2 marks for correct code)

Page 2 of 7

Page 4

16 A The rowspan attribute in HTML is used in a table to allow a cell to span 2
across multiple rows. Example: <td rowspan=”2”>Data</td>

The colspan attribute in HTML is used in a table to allow a cell to span

across multiple columns. Example: <td colspan=”2”>Data</td>

(1 mark for mentioning purpose of rowspan with example)
(1 mark for mentioning purpose of colspan with example)
OR
The type attribute defines the style of ordering for the list.
B
The start attribute specifies the starting value for the first list item.
<html>
<head></head>
<body>
<ol type="i" start="4">
<li>Fourth</li>
<li>Fifth</li>
<li>Sixth</li>
</ol>
</body>
</html>
(1 mark for mentioning purpose of type and start attribute)
(1 mark for mentioning correct example)

17 The purpose of a hyperlink is to link one webpage to another. 2
The href attribute specifies the link destination. Example:
<a href="https://example.com">Click Here</a>
(1 mark for correct purpose)
(1 mark for mentioning correct use and example)

Page 3 of 7

Page 5

18 A Line 1: background-color 2
Line 2: color
Line 3: font-family
Line 4: font-size
(1/2 mark for filling each blank correctly)
OR
B Line 1: <dd>The City of Joy</dd>
Line 2: type="I"
Line 2: start="5"
Line 3: <li>Chennai</li>
(1/2 mark for filling each blank correctly)

19 Ravi should not continue with the payment if the website's URL starts with "http" 2
because it is not secure. "https" is required for safe transactions.
(1 mark for correct choice)
(1 mark for correct justification)

Q No Section-C Marks

20 i 3
<body alink="pink">
<a href="https://www.education.gov.in/">Click Here</a>
</body>

ii.
<title>My Webpage</title>

iii.
<font face="Arial" size="12">Welcome to my website!</font>

(1 mark for each correct answer)
21 I) https 3
II) It signifies that the transmission of information over the network is secure.
III) URL: Uniform Resource Locator
WWW: World Wide Web
(1 mark for each correct answer)

Page 4 of 7

Page 6

22 A HTML Code for Embedding Video : 3
<video controls><source src="VideoFile.mp4"></video>
HTML Code for Embedding Audio :
<audio controls><source src="AudioFile.mp3"></Audio>

(1.5 mark for code of Embedding Video)
(1.5 mark for code of Embedding Audio)
OR
Hyperlink allows us to link HTML elements (text and/or image) to another
B
document or new section within the current document.
<a href="https://www.example.com">External Link</a>

(1.5 mark for correct definition)
(1.5 marks for correct code)

23 I. CO<SUB>2</SUB> 3
II. <p>(X+Y)<sup>2</sup></p>
III. A<SUP>4</SUP>

(1 mark for each correct answer)
Q No. Section-D Marks

24 A <html> 4
<head>
<title>Class Timetable</title>
</head>
<body bgcolor='LightGreen'>
<h2>Class Timetable</h2>

Page 5 of 7

Page 7

<table border='1'>
<tr>
<th>Day</th>
<th>1st Period</th>
<th>2nd Period</th>
</tr>
<tr>
<td>Monday</td>
<td>Mathematics</td>
<td>Hindi</td>
</tr>

<tr>
<td>Tuesday</td>
<td>Science</td>
<td>English</td>
</tr>
<tr>
<td>Wednesday</td>
<td colspan='2'>Physics</td>
</tr>
</table>
</body>
</html>
(1 mark for correct implementation of each specification)

OR
B)
I. <img> tag
II. <img src="logo.jpg" alt="Logo">
III. <a href="aboutus.html">
<img src="logo.jpg" alt="Logo">
</a>

Page 6 of 7

Page 8

IV. The "alt" attribute provides an alternate text for the image that will
be displayed when the image fails to load.
(1 mark for each correct answer)

Q No. Section-E Marks

25 I. e-commerce fraud or Phishing 4
II. financial information
III. He should have checked for "https://" .
IV. He should use trusted payment gateways for payment.
(1 mark for each correct answer)

26 I. Yes, this is an example of IPR violation because Meera is using someone 4
else’s creative work without proper authorization or acknowledgment.

II. Plagiarism
III. She should give proper credit to the original creators by citing the source.
She should use copyright-free resources or materials licensed under
Creative Commons.

IV. Always respect copyright laws and seek permission before using someone
else’s work.
Avoid spreading misinformation or using online content without verifying
its authenticity.
(1 mark for each correct answer)

Page 7 of 7

Page 9

Study Materials
Notes

Model Papers Class 6 Notes

Sample Papers Class 7 Notes
Half Yearly Sample Papers Class 8 Notes

Class 9 Notes
Important Resources
Class 10 Notes
Periodic Table
Class 11 Notes
Writing Skills / Formats

Maps of India / World Class 12 Notes

Books and Solutions

NCERT Books
NCERT Book Solutions
HC Verma Chapter Wise Solutions
RD Sharma Solutions
CGBSE Solutions

Document Details

Board / OrgCBSE
ExamClass 10
TypeSolution
Pages9
Updated30 Apr 2026