
CBSE Class 10 Question Papers are the most important study material for effective exam preparation. We at Zollege have provided all CBSE Class 10 Previous Year Papers with Solution PDFs here.
Students can freely download the CBSE Class 10 previous year's question paper PDFs along with their solutions here. We strongly encourage CBSE 10 aspirants to scan through all the CBSE Class 10 Question Paper to know the overall difficulty level, CBSE Class 10 Syllabus and understand the changes in CBSE Class 10 Exam Pattern over the years.
| CBSE Class 10 Computer Application 2024 Question Paper with Solution PDF | Check Solution |
The letter S in the abbreviation HTTPS in the context of Networking protocols stands for:
The 'S' in HTTPS stands for Secure. HTTPS is a secure version of HTTP that encrypts the data exchanged between the web server and the browser, ensuring that sensitive information remains private.
Always use HTTPS while browsing, especially when entering sensitive information like passwords, to ensure your data is secure.
Which of the following is not a Web Service?
Web services are online services accessed through the internet, such as the Diksha portal, email, and online banking. Bluetooth is a local wireless communication technology, not an internet-based service.
When working with web services, make sure you are using the internet to access them. Bluetooth is for local communication, not web-based services.
In 3G and 4G mobile technologies, the character 'G' stands for:
The 'G' in 3G and 4G stands for Generation. These terms represent the third and fourth generations of mobile network technology, which provide faster speeds and enhanced services.
The "G" indicates the generation of mobile network technology, with each new generation offering better data speed and connectivity.
A website or online platform where individuals or groups regularly publish written content, typically in reverse chronological order is known as:
A Blog is a website where content is published regularly, with the newest posts appearing first. Blogs are often used for personal expression, professional information, or hobbies.
Blogs are great for sharing information regularly. They are often used for storytelling, education, and keeping readers updated.
Which of the following is not an attribute of the <font> tag?
The <font> tag in HTML supports attributes like face, size, and color, but height is not a valid attribute for the <font> tag.
The <font> tag is now outdated in modern HTML. It's better to use CSS for styling text and elements.
In HTML, we start a comment using:
Use comments in your HTML code to leave notes or explain complex sections of your code. This helps you and others understand it better.
Which of the following elements have both the opening and the closing tags in HTML?
The <h1> tag is used to define headings and it requires both an opening and a closing tag. Tags like <br> (line break), <hr> (horizontal rule), and <img> (image) are self-closing.
Heading tags like <h1> to <h6> always require closing tags. Self-closing tags like <br> do not.
The default color of vlink is:
In HTML, the default color for visited links (vlink) is purple. This is the standard style used by browsers unless it is changed using CSS.
You can change the colors of links (visited or not) using CSS to match the design of your website.
Which of the following tags is not used while creating a description list?
- <dl> is the tag used for creating a description list.
- <dt> is used to define the term in a description list.
- <dd> is used to describe the term in a description list.
- <td> is used for defining table data, not for description lists.
<td> is used in tables, not in description lists! In description lists, you use <dl>, <dt>, and <dd> to list terms and their descriptions.
Which of the following is not an example of an Open Source Software?
Photoshop is proprietary software developed by Adobe. This means its source code is not available for public use or modification. On the other hand, Linux, Android, and OpenOffice are open-source software, meaning their source code is freely available and can be modified or distributed by anyone.
Open-source software promotes collaboration and innovation, allowing users to modify and improve the software freely.
Assertion (A): When you enter a query into a search engine, it retrieves and presents a list of web pages, documents, images, videos, or other types of content that are relevant to your search.
Reason (R): The goal of information retrieval is to effectively and efficiently find and present information that matches the user’s search criteria.
Both the assertion and reason are correct. The search engine retrieves relevant information based on a query, and the reason explains that the goal of information retrieval is to efficiently match search criteria with relevant content. The reason directly supports the assertion.
Information retrieval systems, like search engines, are designed to provide the most relevant results based on the search terms entered by the user.
Assertion (A): It becomes difficult to update and maintain a website’s design using CSS.
Reason (R): CSS allows web developers to separate the presentation layer (styles and layout) from the content layer (HTML).
The assertion is false. In fact, CSS makes it easier to update and maintain a website’s design by separating the layout and styles from the content. This modular approach improves flexibility and ease of updates. The reason is true because CSS separates the design and layout from HTML content, making maintenance simpler.
CSS makes web design more manageable and flexible. By separating styling from content, updating the look of a website becomes easier and more efficient.
Write any two points of comparison between Chat and Email in the context of web services.
Chat is quick and informal; email is slower and more formal.
(a) Write in brief about any two advantages of e-Banking.
e-Banking is fast and convenient, while e-Reservation can be a problem for people without internet access.
(b) Write in brief one advantage and one limitation of e-Reservation.
Write any one point of difference between a webpage and a website.
A webpage is a single page that you see on the internet, while a website is a collection of many such pages linked together.
A webpage is one page, but a website is many pages linked together!
(a) Explain in brief about any two factors that are responsible for the Digital Divide.
(b) What are software licenses? Give one example each of a free software license and a proprietary software.
Free software can be changed and shared; proprietary software cannot be modified or shared without permission.
Write any two significances of using links in an HTML webpage.
Links are important for both navigation and making sure your webpage is found easily on search engines.
(a) Match the tag with their corresponding correct attribute.
| Tag | Attribute |
|---|---|
| <table> | border |
| <input> | type |
| <ol> | start |
| <td> | rowspan |
- border in <table> defines the table’s border.
- rowspan in <td> makes the table cell span multiple rows.
(b) Differentiate between bgcolor and background attributes of the <body> tag. Write one HTML statement explaining the use of each attribute.
<body bgcolor="lightblue"> <body background="image.jpg">
- Use bgcolor for solid colors and background for images in the <body> tag.
Write suitable HTML statements to display the following text on a webpage in appropriate subscript and superscript form:
H2O E = MC2
- Use <sub> for subscript and <sup> for superscript in HTML!
A school wants to create a webpage for the announcement of the orientation programme of its Cultural Club. The school wants all the 3 lines to appear as Headings and Subheadings:
<!DOCTYPE html>
<html>
<head>
<title>Orientation Programme</title>
<style>
h1 {
color: blue;
font-weight: bold;
font-size: 36px; /* Largest size for the heading */
}
h2 {
color: green;
font-size: 28px; /* Smaller than h1 */
}
h3 {
color: cyan;
font-size: 22px; /* Smaller than h2 */
}
</style>
</head>
<body>
<h1>ABC International School</h1>
<h2>Cultural Club</h2>
<h3>Orientation programme on 15th March 2024</h3>
</body>
</html>
Solution:
The HTML code uses three heading tags (<h1>, <h2>, and <h3>) to define the headings for each line. CSS styles are applied to set the colors and sizes as follows:
Use CSS to style headings by changing their color, font-weight, and font-size. The heading tags (<h1> to <h6>) define the visual hierarchy of content on a webpage.
Ayesha has shot some videos. She wants to create a webpage so as to share her creations with her followers across the world. Help Ayesha to embed her video file in the webpage with the following specifications:
<!DOCTYPE html>
<html>
<head>
<title>Ayesha's Video</title>
</head>
<body>
<h1>Ayesha's Video Creations</h1>
<video width="350" height="250" controls>
<source src="Ayeshahits.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
</html>
Solution:
The <video> tag is used to embed videos into the webpage. The attributes set the following:
Use the <video> tag to embed videos, and always include controls for better user experience.
(a) Online Gadgets is an electronic products company. The company wishes to sell its products online for which they want to launch its website. The homepage of the website should contain the images of its products saved as PHONE.JPG and TV.JPG. The company wishes to open the webpage named ALLPHONES.HTML when the image PHONE.JPG is clicked. Similarly, on clicking the image TV.JPG, a different webpage named ALLTVS.HTML should open. Both images should be displayed with a width of 200 pixels and a height of 150 pixels.
<!DOCTYPE html>
<html>
<head>
<title>Online Gadgets</title>
</head>
<body>
<h1>Welcome to Online Gadgets!</h1>
<p>Click on the images to explore more products.</p>
<!-- Image for Phones -->
<a href="ALLPHONES.HTML">
<img src="PHONE.JPG" alt="Phone" width="200" height="150">
</a>
<!-- Image for TVs -->
<a href="ALLTVS.HTML">
<img src="TV.JPG" alt="TV" width="200" height="150">
</a>
</body>
</html>
Solution:
The <a> tag is used to create clickable links, and the <img> tag is used to display images. Here's how they work together:
Use the <a> tag with an <img> tag inside to create clickable images that link to other webpages.
Explain the term “Plagiarism.” Write in brief any two examples to illustrate acts of Plagiarism.
Plagiarism is the act of using someone else’s work, ideas, or words without giving proper credit and presenting it as one’s own. It is considered unethical and a form of intellectual theft. Plagiarism can occur in various forms, such as copying text, images, or code without attribution, or paraphrasing content without acknowledging the source.
Examples of Plagiarism:Plagiarism is a serious offense in academics, research, and professional settings. It not only disrespects the original creator’s effort but can also lead to penalties like failing grades, damaged reputation, or even legal consequences.
Always give proper credit to the original author by using citations and references. Tools like plagiarism checkers can help ensure your work is original and properly cited.
(a) Write the HTML code to design a Student’s Data input form as shown below.
<!DOCTYPE html>
<html>
<head>
<title>Student Data Input Form</title>
</head>
<body>
<h1>Student Data Input Form</h1>
<form>
<!-- Name Input -->
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<!-- Newsletter Checkbox -->
<label for="newsletter">Subscribe for Newsletter:</label>
<input type="checkbox" id="newsletter" name="newsletter"><br><br>
<!-- Gender Radio Buttons -->
<label>Gender:</label><br>
<input type="radio" id="male" name="gender" value="Male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="Female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="Other">
<label for="other">Other</label><br><br>
<!-- Country Dropdown -->
<label for="country">Country:</label>
<select id="country" name="country">
<option value="USA">USA</option>
<option value="Canada">Canada</option>
<option value="UK">UK</option>
<option value="Australia">Australia</option>
</select><br><br>
</form>
</body>
</html>
Solution:
The HTML code uses:
Use <label> tags with for attributes to link labels to form elements for better accessibility and usability.
(b) Observe the screenshot of the following content in a webpage and write the HTML code to generate the desired output.
<!DOCTYPE html>
<html>
<head>
<title>Details Table</title>
</head>
<body>
<h2>DETAILS</h2>
<table border="1">
<tr>
<th>ACTIVITY</th>
<th>MEMBER NAME</th>
<th>AGE</th>
<th>Email</th>
</tr>
<tr>
<td>Chess Club</td>
<td>John Doe</td>
<td>28</td>
<td>john.doe@example.com</td>
</tr>
<tr>
<td>Photography Club</td>
<td>Jane Smith</td>
<td>24</td>
<td>jane.smith@example.com</td>
</tr>
<tr>
<td>Football Club</td>
<td>Michael Johnson</td>
<td>31</td>
<td>michael.johnson@example.com</td>
</tr>
</table>
</body>
</html>
Solution:
The HTML code uses the following:
Use <th> for table headers to make them bold by default and align them center. Use border="1" in the <table> tag to quickly add a border to the table.
Suraj is a novice in digital communication. He has recently joined a company where most communications happen over the Internet. On multiple occasions, Suraj faces problems while working over the Internet. Help him by answering the following questions:
(a) Suraj is asked to send an email to his supervisor. He types in the content and provides the email address of the recipient as www.gmail.com. How is the address typed by Suraj different from the email address of the recipient?
The address www.gmail.com is a web address (URL) for accessing the Gmail website, not an email address. An email address typically contains a username followed by the domain, for example, supervisor@gmail.com.
Email addresses always have a format like username@domain.com.
(b) Suraj has been asked to create a video conferencing link and share the link with all co-workers who are working from home. Suggest any two softwares which he can use for the purpose.
Many companies use video conferencing tools like Zoom and Google Meet for online meetings and collaboration.
(c) Suraj has been asked to upload a file containing transaction details and send it to his colleagues in the office. Which Internet protocol will be used by him and by his colleagues in the office to upload and download the file over the Internet? Write the abbreviation as well as the full form of the protocol to be used.
The protocol to be used is FTP (File Transfer Protocol).
Abbreviation: FTP
Full Form: File Transfer Protocol
FTP is commonly used to upload and download files securely over the Internet.
(d) Suraj has been asked to use a social networking site to promote sales of the company’s products. Suggest him two commonly used social networking sites where he can post about the products and promote the company’s sales.
Social networking sites like Facebook and Instagram are widely used for marketing and product promotion.
(a) Raghu is a painter and blogger. He regularly updates his paintings on his blog. Recently, he saw one of his paintings being used in a presentation by his friend, Nityananda, without acknowledging Raghu as the creator. What crime (if any) has been committed by Nityananda?
Nityananda has committed the act of Plagiarism. Plagiarism occurs when someone uses another person’s work, such as paintings, writings, or music, without giving proper credit to the original creator. This is unethical and a violation of intellectual property rights.
Solution: Using someone else's work without acknowledgment disrespects their intellectual property. It is considered a serious offense in academic, artistic, and professional contexts.
Always give credit to the original creator of a work, whether it's art, writing, or music, to avoid plagiarism.
(b) Raghu appraised Nityananda about IPR and its associated violations. Expand the term IPR.
IPR: Intellectual Property Rights
Solution: IPR refers to the legal rights granted to the creators of intellectual property, such as paintings, writings, inventions, and designs, to protect their work from unauthorized use or reproduction.
Intellectual Property Rights ensure that creators have control over the use of their work and can benefit from their creations.
(c) Raghu wants to use e-Commerce to sell his paintings online. Write any two precautions that he should take while using e-Commerce.
https:// in the URL).Solution: Selling products online through e-Commerce platforms requires precautions to ensure safety and avoid fraud. Verifying the credibility of the platform and using secure payment methods reduces risks.
Always check for https:// in the URL and use trusted payment methods to ensure secure transactions online.
(d) Mention any two netiquettes which Raghu should follow while being online.
Solution: Netiquettes refer to the correct or acceptable ways of behaving online. Respectful communication and avoiding the spread of misinformation contribute to a positive and ethical online environment.
Follow netiquettes like being polite and avoiding false information to ensure responsible and respectful online behavior.
*The article might have information for the previous academic years, please refer the official website of the exam.