CBSE 10th Computer Applications Exam 2025 : Most Important Practice Question For Last Minute Revision

SHARING IS CARING
If our Website helped you a little, then kindly spread our voice using Social Networks. Spread our word to your readers, friends, teachers, students & all those close ones who deserve to know what you know now.
CBSE 10th exams are underway and your CBSE 10th Computer Applications exam is scheduled on 18th March, 2025. You have just a few Days left for CBSE 10th Computer Applications exam.
We know how important it is to focus on the right topics and questions during revision so this article provides details of important CBSE 10th Computer Applications Most Repeated Questions along with answers for last-minute revision.
Students are advised to solve these questions before the exam so that they are 100% prepared to solve questions from the actual board paper.
CBSE Class 10 Computer Applications Most Important Questions 2025
Question 1. The acronym SSH stands for ............... .
- Safe Shell
- Software Shell
- Secure Shell
- Simple Shell
Answer - Secure Shell
Reason — The acronym SSH stands for Secure Shell.
Question 2. Which of the following is an example of social networking website?
- wikipedia.org
- Facebook.com
- cbse.gov.in
- ncert.nic.in
Answer - Facebook.com
Reason — Facebook.com is an example of social networking website.
Download PDF |
CBSE 10th Computer Applications Exam 2025 Most Important Practice Question |
Question 3. M in HTML stands for:
- Modify
- Management
- Multiple
- Markup
Answer Markup
Reason — HTML stands for HyperText Markup Language.
Question 4. A ............... is an online journal or informational website run by an individual, group, or corporation that offers regularly updated content about a topic.
- News group
- Blog
- WWW
- e-Groups
Answer - Blog
Reason — A blog is an online journal or informational website run by an individual, group, or corporation that offers regularly updated content about a topic.
Question 5. Which of the following is not a valid value for the target attribute of <a> tag?
- _blank
- _self
- _top
- _bottom
Answer _bottom
Reason — The target attribute specifies where to open the linked document and _bottom is not a valid value for this attribute.
Question 6. link, vlink, alink are attributes of ............... tag.
- <body>
- <a>
- <html>
- <img>
Answer - <body>
Reason — link, vlink, alink are attributes of <body> tag.
👉 CBSE Class 10 Study Materials
CBSE Class 10 Syllabus 2024-25 | NCERT Solutions For Class 10 |
CBSE Class 10 Previous Year Question Papers | CBSE Class 10 Books |
CBSE Class 10 Full Study Material | CBSE Class 10 Sample Paper |
Question 7. The ............... attribute of <img> tag specifies an alternate text for an image, if the image cannot be displayed.
- alt
- text
- alternate
- msg
Answer. alt
Reason — The alt attribute of <img> tag specifies an alternate text for an image, if the image cannot be displayed.
Question 8. Which of the following tag can be used to draw a horizontal line in webpage?
- <line>
- <hrule>
- <hr>
- <rule>
Answer. <hr>
Reason — <hr> tag can be used to draw a horizontal line in a webpage.
Question 9. In HTML, <dl>, <dd> and <dt> tags are used to create:
- Description list
- Definition list
- Detail list
- Dynamic list
Answer. Description list
Reason — In HTML, <dl>, <dd> and <dt> tags are used to create description list.
Question 10. A software ............... is a legal instrument governing the use or redistribution of software.
- license
- law
- document
- piracy
Answer. license
Reason — A software license is a legal instrument governing the use or redistribution of software.
Question 11
Assertion (A): Search engine is a hardware device that searches for any websites on the World Wide Web.
Reason (R): Google Search and Microsoft's Bing are two popular search engines.
- Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
- Both Assertion (A) and Reason (R) are true but Reason (R) is not a correct explanation of Assertion (A).
- Assertion (A) is true and Reason (R) is false.
- Assertion (A) is false and Reason (R) is true.
Answer
Assertion (A) is false and Reason (R) is true.
Reason — Assertion (A) is false because a Search engine is a software or program that searches for any websites on the World Wide Web.
Reason (R) is true as Google Search and Microsoft's Bing are two popular search engines.
Question 12
Assertion (A): CSS saves a lot of work. It can control the layout of multiple web pages all at once.
Reason (R): All the required style settings can be stored in an external stylesheet and a link to it can be added in the <head> section of each web page.
- Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
- Both Assertion (A) and Reason (R) are true but Reason (R) is not a correct explanation of Assertion (A).
- Assertion (A) is true and Reason (R) is false.
- Assertion (A) is false and Reason (R) is true.
Answer
Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
Reason — Assertion (A) is true as CSS can indeed save a lot of work by allowing us to apply consistent styles to multiple web pages simultaneously.
Reason (R) is true as an external style sheet can be linked in the <head> section of each web page. Linking saves time on the part of the website developer.
Question 13. Write any two points of comparison in between SMS and MMS.
Answer
SMS | MMS |
SMS stands for Short Message Service. | MMS stands for Multimedia Messaging Service. |
SMS does not support multimedia content and it allows to send only text messages of upto 160 characters. | MMS supports multimedia content and allows to send images and videos along with text. |
Question 14. Briefly discuss the role of e-governance in any country's growth and development.
Answer. E-governance enhances transparency, efficiency, and accessibility in government services. It fosters economic growth by reducing corruption, streamlining processes, and promoting citizen engagement, ultimately contributing to a country's overall development and progress.
Question 15. Compare 3G and 4G mobile technologies on any two major points.
Answer
3G | 4G |
A 3G network offers slower data speed of upto 2 Mbps. | A 4G network offers faster data speed of upto 100 Mbps to 1 Gbps. |
3G uses a packet switching technique. | 4G uses message and packet switching technique. |
Question 16. Mention any two purposes of using comments while designing a HTML webpage.
Answer
Two purposes of using comments while designing a HTML webpage are:
- Comments can be used to explain code. The explanation can be for oneself or for other people.
- Comments can be used to leave notes, a reminder to come back to a section or prioritize it during the next redesign.
Question 17.
Ronaldo, a web designer in a start-up company, wants to give headings in a webpage through <h1> tag. Additionally, he wants to implement following styles on all the <h1> tag of the same webpage at one go.
- Color-blue
- Background color-yellow
- border of the heading - 2px in red
He is not able to implement the above-mentioned additional styles of <h1> tag through regular html code. Suggest him a way out and also help him in writing the code for same.
Answer
Ronaldo should use CSS (Cascading Style Sheets) to implement the additional styles of <h1> tag.
The HTML code for the same is given below:
<html> <head> <style> h1 {color: blue; background-color: yellow; border: 2px solid red;} </style> </head> </html> <body> <h1> Welcome </h1> </body>
Question 18.
Rajat, a web developer, wants to show a video named "tiger.mp4" in dimensions of 300px width and 200px height on the web page. Help Rajat by writing its html code.
Answer
The HTML code to add video to the web page is as follows:
<video width = "300" height = "200" controls> <source src = "tiger.mp4" type = "video/mp4"> Your browser does not support the video tag. </video>
Question 19. What do you understand by the term "Digital Divide"? Mention any two measures to overcome it.
Answer
A digital divide is an economic and social inequality with regard to access to, use of, or impact of Information and Communication Technology (ICT) including smartphones, tablets, laptops, and the internet in the society.
Two measures to overcome digital divide are as follows:
- Steps should be taken to make digital devices and digital technologies more affordable.
- Internet infrastructure should be expanded with the aim to provide Internet access to the remotest parts of the country.
Question 20
Case Study 1
Sanchay, has recently joined the Global Network company as a network trainee. Help Sanchay by suggesting the best suitable answers for the following issues which needs to be resolved:
a. Company wants to engage employees in some online fun filled activities to strengthen their inter-personal skills. Suggest any two popular video conferencing software to be used for the same.
b. Company wants employees to upgrade themselves by exploring internet about latest happenings in the networking field. Suggest any two suitable web browsers for the same.
c. Sometimes few of the employee needs to remotely login to their office PC from their home. Suggest any one popular software and the protocol being used for the same.
d. Company wants its employees to be safe while entering their login credentials and bank account details on the internet. Out of http and https, which protocols should be preferred and why?
Answer
a. Two popular video conferencing softwares are:
- Zoom
- Microsoft Teams
b. Two suitable web browsers are:
- Google Chrome
- Mozilla Firefox
c. AnyDesk software and Telnet protocol.
d. https should be preferred as it establishes a secure connection for encrypted data transmission between the server and the browser.