Class 10 Computer Applications (Code 165) Sample Question Paper 2026 with Solution is an essential resource for students preparing for the CBSE Board Exams 2025–26. It provides a clear understanding of the latest exam pattern, question formats, internal choices, and chapter-wise weightage. With detailed solutions, students can learn the correct way to frame answers as per CBSE marking scheme and improve their writing skills for scoring high marks. Teachers can also use this paper to guide students effectively, explain key concepts, and design classroom assessments aligned with board standards. Download the sample paper with solutions to prepare smartly and confidently.

CBSE Class 10 CA 165 Sample Question Paper Session (2025-26)
Class: X Session: 2025-26
Computer Applications (Code 165)
Sample Question Paper (Theory)
Maximum Marks: 50
Time Allowed: 2 hours
General Instructions:
- This Question Paper has 5 Sections A-E.
- All Questions are compulsory. However, internal choices have been provided in some of the
questions. - Section A has 12 questions carrying 01 mark each.
- Section B has 7 Short Answer (SA-I) type questions carrying 02 marks each.
- Section C has 4 Short Answer (SA-II) type questions carrying 03 marks each.
- Section D has 1 Long Answer (LA) type question carrying 04 marks.
- Section E has 2 Source based /Case-based /Passage based Questions carrying 04 marks each.
SECTION – A (All questions are compulsory)
1. Which of the following is NOT a web service?
(A) Sending an email via a webmail client
(B) Making online transactions through a banking portal
(C) Sharing files through Bluetooth
(D) Conducting online classes for students
2. What does TCP/IP stands for?
(A) Transmission Control Program/Internet Protocol
(B) Transfer Control Program/Internet Protocol
(C) Transfer Control Protocol/Internet Provider
(D) Transmission Control Protocol/Internet Protocol
3. Information retrieval refers to the process of:
(A) Locating and accessing information through search engines
(B) Sending and receiving emails using different email protocols
(C) Transferring files from one device to another using protocols
(D) Fetching web pages from a server
4. Which of the following is an attribute of the <BODY> tag?
(A) vlink
(B) face
(C) color
(D) font-size
5. In HTML, the bgcolor attribute is used to _______.
(A) Set the background color of the webpage
(B) Set the text color of the webpage
(C) Set the background image of the webpage
(D) Set the background text of the webpage
6. Which of the following is the use of VoIP technology?
(A) Transmitting multimedia content over the internet
(B) Sending and receiving emails
(C) Making voice calls over the internet
(D) Hosting websites on servers
7. Which of the following best describes the main responsibility of a web server?
(A) Storing files on a local device
(B) Transmitting data across the internet
(C) Hosting websites and delivering content to web browsers
(D) Encrypting files to ensure secure transfer
8. The digital divide refers to:
(A) The difference in privacy laws across different countries
(B) The gap between those who have access to digital devices and those who do not
(C) The issue of intellectual property rights in the digital world
(D) The security measures taken to protect digital transactions in e-commerce
9. Which of the following is a characteristic of open-source software?
(A) It is free of cost and can be modified by anyone.
(B) It is free of cost, but cannot be modified.
(C) It requires a fee for usage and modification.
(D) It is available for purchase and cannot be shared.
10. Rahul wants to access another computer system remotely. Which protocol should he use?
(A) SMTP
(B) POP3
(C) HTTP
(D) TELNET
Questions No-11 & 12 are Assertion and Reason types. Each question consists of two statements, namely, Assertion (A) and Reason (R). Select the most suitable option considering the Assertion & Reason.
A. Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
B. Both Assertion (A) and Reason (R) are true but Reason (R) is not a correct explanation of Assertion (A).
C. Assertion (A) is true and Reason (R) is false.
D. Assertion (A) is false and Reason (R) is true.
11. Assertion (A): FTP is used for transferring files over a network.
Reason (R): FTP encrypts all file transfers for secure communication.
Ans: C. Assertion (A) is true and Reason (R) is false.
12. Assertion (A): When we enter the URL of a website in the address bar, the web browser retrieves the web page from a web server.
Reason (R): The web browser uses the HTTP protocol to interact with web servers and retrieve web pages.
Ans: A. Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
SECTION –B (2 marks each)
13. What is the importance of comments. Write the syntax for writing comments in an HTML page.
Ans: Comments help in explaining the code as additional and non executable information that makes program more readable.
Syntax: <!– This is a comment –>
14. A) Sanaya, a Class X student, enjoys learning through online platforms. What is this approach of studying called? Mention any two advantages of using this approach.
Ans: This approach is called online learning or e-learning.
Two advantages:
i. Flexibility
ii. Access to a wide range of resources.
OR
B) What do you understand by the term web-address? How is it different from an email address?
Ans: Web address (URL) is used to locate a website while an email address is used to send and receive emails to someone.
15. Aarav is designing a webpage and wants to set the background color and text color. Write code to achieve this using HTML attributes.
Ans: Aarav can use the bgcolor attribute to set the background color and the text attribute to set the text color in HTML.
Example: <body bgcolor=”yellow” text=”red”>
16. A) Explain the purpose of the rowspan and colspan attributes in an HTML table. Provide an example.
Ans: The rowspan attribute in HTML is used in a table to allow a cell to span 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>
OR
B) Shruti wants to create a numbered list on her webpage. Explain the purpose of the type and start attributes in the <ol> tag with an example.
The type attribute defines the style of ordering for the list.
The start attribute specifies the starting value for the first list item.
Example:
<html>
<head></head>
<body>
<ol type="i" start="4">
<li>Fourth</li>
<li>Fifth</li>
<li>Sixth</li>
</ol>
</body>
</html>
17. What is the purpose of Hyper-link in an HTML Page? Explain the use of the href attribute with an example.
Ans: The purpose of a hyperlink is to link one webpage to another. The href attribute specifies the link destination.
Example: <a href=”https://www.examsmantra.in>ExamsMantra</a>
18. A) An incomplete HTML code of a webpage is given below. Fill in the empty spaces in the <STYLE> tag to meet the specifications given.
<html>
<head>
<title>CSS Demo</title>
<style>
body {
______ : Yellow;
}
h1 {
______ : Red;
______ : Arial;
}
p {
______ : 16px;
}
</style>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<p>This page demonstrate CSS styling.</p>
</body>
</html>
Specifications:
> Set the background color of the webpage to Yellow.
> The heading (<h1>) should have a Red color and use the Arial font.
> The paragraph text (<p>) should have a font size of 16px.
Ans: Line 1: background-color
Line 2: color
Line 3: font-family
Line 4: font-size
OR
B) Nisha, a Class X student, is designing an HTML page to display a description list and an ordered list for her project. She writes the following code:
<html>
<body bgcolor="lightgrey">
<h2>Indian Cities</h2>
<dl>
<dt>Mumbai</dt>
<dd>The City of Dreams</dd>
<dt>Kolkata</dt>
<!-- line 1 -->
</dl>
<p>Popular Cities in India:</p>
<ol type=" " start=" "> <!-- line 2 -->
<li>Delhi</li>
<li>Mumbai</li>
<!-- line 3 -->
</ol>
</body>
</html>
Based on the above code, fill in the blanks in line 1, line 2, and line 3 as per specifications given below.
> In line 1, add the description “The City of Joy” for Kolkata.
> In line 2, specify the type of ordered list as Roman numerals and set the starting value as 5.
> In line 3, add the name of another city Chennai as the third list item.
Ans: Line 1: <dd>The City of Joy</dd>
Line 2: type=”I”
Line 2: start=”5″
Line 3: <li>Chennai</li>
19. Ravi is trying to make an online payment on an e-commerce website. He sees that the website’s URL starts with “http”. Should he continue with the payment? Give reasons to support your answer.
Ans: Ravi should not continue with the payment if the website’s URL starts with “http” because it is not secure. “https” is required for safe transactions.
SECTION –C (3 marks each)
20. The following HTML statements are not written properly. Re-write the correct statements with underlined corrections. The desired purpose of each statement is mentioned under it.
i. <A href=https://www.education.gov.in/ acolor=”purple”>Click Here</A>
Specification: The color of the hyperlink when it’s clicked should be pink.
Ans: <body alink=”pink”>
<a href=”https://www.education.gov.in/”>Click Here</a>
</body>
ii. <TITLE font=”16px”>My Webpage</TITLE>
Specification: The webpage title should be ‘My Webpage’ without any font-related attributes.
Ans: <title>My Webpage</title>
iii. <FONT type=arial size=12>Welcome to my website!</FONT>
Specification: The text should use the Arial font, size 12.
Ans: <font face=”Arial” size=”12″>Welcome to my website!</font>
21. Suchita is examining a URL https://www.data.gov.in/ and has a few questions. Help her by providing answers to the following questions.
i. Which part of the URL represents the protocol?
Ans: https
ii. What is the meaning of “s” in https?
Ans: secure
iii. What do the abbreviations URL and WWW stand for?
Ans: World Wide Web
22. A) Write suitable HTML Code to Embed audio and video in a webpage.
Ans: HTML Code for Embedding Video:
<video controls><source src=”VideoFile.mp4″></video>
HTML Code for Embedding Audio:
<audio controls><source src=”AudioFile.mp3″></audio>
OR
B) What is a Hypertext link? Write the HTML code to create a hyperlink that refers to an external website in a webpage.
Ans: Hyperlink allows us to link HTML elements (text and/or image) to another document or new section within the current document.
<a href=”https://www.example.com”>External Website Name</a>
23. Raghav wants to add the following text to a webpage. Help him by writing the suitable HTML statements for the following:
I) CO2 – CO <SUB>2</SUB>
II) (X+Y)2 – (X+Y)<SUP>2</SUP>
III) A4 – A<SUP>4</SUP>
SECTION – D (4 marks)
24. A) Write the HTML code to design the web page as shown below, considering the specifications as given below.

Specification-1: The HTML code structure should be proper. Heading ‘Class Timetable’ should be the second level of heading and Background color of the page should be LightGreen.
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 3 rows and 3 columns. The data in each cell should be as shown in the above table.
Specification-4: Attribute colspan should be used wherever required.
<html>
<head>
<title>Class Timetable</title>
</head>
<body bgcolor='LightGreen'>
<h2>Class Timetable</h2>
<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>
OR
B) Answer the following Questions.
i. Which HTML tag is used for inserting an image on a webpage.
Ans: <img> tag
ii. Rahul wants to display an image ‘logo.jpg’ on a webpage. Write the HTML command he should use to insert the image.
Ans: <img src=”logo.jpg” alt=”Logo”>
iii. On the same webpage, Rahul wants to create a link to another webpage ‘aboutus.html’ when the image is clicked. Write the HTML command he should use.
Ans: <a href=”aboutus.html”>
<img src=”logo.jpg” alt=”Logo”>
</a>
iv. Explain the use of the “alt” attribute in the HTML Image tag.
Ans: The “alt” attribute provides an alternate text for the image that will be displayed when the image fails to load.
SECTION – E (4 marks each)
25. Mr. Ravi recently bought a new smartphone and began exploring online platforms. He decided to book a train ticket to visit his hometown and searched for a booking website which looks very much like the original website. After entering his personal and payment details, he noticed that money had been deducted from his account, but he didn’t receive any booking confirmation. He then realized that he has been a victim of fraud.
Based on the above information answer the following question:
i. What kind of fraud is Mr. Ravi a victim of?
Ans: e-commerce fraud or Phishing
ii. Which sensitive information may have been exposed due to the fraudulent activity?
Ans: financial information
iii. What should Mr. Ravi have checked in the URL before entering his details online?
Ans: He should have checked for “https://”
iv. What steps can Mr. Ravi take to protect his financial information in the future?
Ans: He should use trusted payment gateways for payment.
26. Meera is a creative student who loves to design posters for her school events. While preparing a poster for a cultural festival, she downloaded images and content from the internet without seeking permission or giving credit to the original creators.
Based on the above information, answer the following questions:
i. Can this incident be considered a violation of Intellectual Property Rights (IPR)? Why or why not?
Ans: Yes, this is an example of IPR violation because Meera is using someone else’s creative work without proper authorization or acknowledgment.
ii. Mention the type of Intellectual Property Rights violation committed by Meera.
Ans: Plagiarism
iii. How can Meera avoid this ethical issue while preparing her poster?
Ans: 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. Suggest any two netiquettes that Meera’s classmates should follow when using online resources.
Ans: Always respect copyright laws and seek permission before using someone else’s work.
Avoid spreading misinformation or using online content without verifying its authenticity.
Find Class 10 Computer Application Code 165 Previous Year Question Papers with Solution
- CBSE Class 10 IT Code 402 Pre Board Sample Question Paper 2024 – with Solution
- CBSE Class 10 IT Code 402 Pre Board Sample Question Paper 2025 – Set 1 with Solution
- CBSE Class 10 IT Code 402 Pre Board Sample Question Paper 2025 – Set 2 with Solution
- CBSE Class 10 IT Code 402 Sample Question Paper 2024 – SET 1 – with Solution
- CBSE Class 10 IT Code 402 Sample Question Paper 2024 – SET 2 – with Solution
- CBSE Class 10 IT Code 402 Sample Question Paper 2024 – SET 3 – with Solution
- CBSE Class 10 Social Science Sample Question Paper 2023 with Solution
- CBSE Class 10 Social Science Sample Question Paper 2024 with Solution
- CBSE Class 10 Social Science Sample Question Paper 2025 with Solution
- CBSE Class 10 Social Science Sample Question Paper 2026 with Solution
- Class 10 AI Code 417 Sample Question Paper 2025 with Solution
- Class 10 CA Code 165 Sample Question Paper 2025
- Class 10 CA Code 165 Sample Question Paper 2025 with Solution
- Class 10 CA Code 165 Sample Question Paper 2026 with Solution
- Class 10 IT Code 402 Sample Question Paper 2022 with Solution – Term 2
- Class 10 IT Code 402 Sample Question Paper 2023 with Solution
- Class 10 IT Code 402 Sample Question Paper 2025 with Solution
- Class 10 Science Code 086 Sample Question Paper 2025