MODEL ANSWER SHEET

Class X – Computer Applications (Code 165) • Session 2021–22 • Term–2 Sample Question Paper – Solved
Section–A (Short Answer • 2 Marks Each)
Q1. Write suitable HTML code to embed audio and video in a webpage.
Example code:
<html>
<body>
<h3>Audio Example</h3>
<audio controls>
  <source src="song.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>

<h3>Video Example</h3>
<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>
</body>
</html>
Q2. (a) What do you understand by the term URL? How is it different from an email address?
OR
(b) What is a newsgroup? How is it different from a blog?
(a) URL vs E-mail address:
  • URL (Uniform Resource Locator) is the address of a resource on the Web, e.g. https://www.cbse.gov.in. It is typed in a web browser to open a webpage.
  • E-mail address is used for sending and receiving e-mails, e.g. student123@gmail.com. It is used in an e-mail client, not in a browser address bar.
OR
(b) Newsgroup vs Blog:
  • Newsgroup is an online discussion group where users post messages to a common group (usually topic-wise, like forums/Usenet).
  • Blog is a personal / organizational webpage where posts or articles are published in reverse chronological order and visitors can read or comment.
Q3. What is a Hypertext link? Give the name and the syntax for the HTML tag which is used for creating a Hypertext Link.

A hypertext link (hyperlink) is a clickable text or image that takes the user to another webpage, document or location when clicked.

Tag name: <a> (anchor tag)

Syntax:

<a href="URL">Link text</a>
Q4. Rohit wants to represent a table in webpage but is unaware of table tags. Explain the role of <tr> and <td> tags. Also write HTML code of a small table and show their use.
  • <tr> (table row) is used to define a row in a table.
  • <td> (table data) is used to define a cell (data) inside a row.
Example:
<table border="1">
  <tr>
    <td>Name</td>
    <td>Class</td>
  </tr>
  <tr>
    <td>Rohit</td>
    <td>X</td>
  </tr>
</table>
Section–B (LA–I • 3 Marks Each)
Q5. Define Internet and write its two uses in our daily life. How is it different from the World Wide Web (WWW)?

The Internet is a global network of interconnected computers that communicate using standard protocols.

Two uses in daily life:
  • Sending and receiving e-mails, instant messages, video calls.
  • Accessing information and services such as online banking, shopping, education, entertainment.
Difference between Internet and WWW:
  • The Internet is the physical network infrastructure (cables, routers, computers, etc.) that connects millions of devices.
  • The World Wide Web is a service running on the Internet that consists of interlinked web pages accessed via web browsers using HTTP/HTTPS.
Q6. What is e-learning? Explain any two merits of e-learning.

e-learning (electronic learning) is a method of learning where teaching-learning takes place using electronic media, especially the Internet (online courses, videos, presentations, etc.).

Merits (any two):
  • Flexibility: Learners can access lessons anytime from anywhere at their own pace.
  • Rich content: It can include videos, animations, quizzes and simulations which make learning more engaging and effective.
  • Cost-effective: Reduces travel and printed material cost.
Q7. “A web browser is different from a web server”. Explain any two differences with suitable example of each.
OR
Explain any two differences between 3G and 4G mobile technologies.
Web browser vs Web server:
  • Role: A web browser is client-side software used to view web pages (e.g. Google Chrome, Mozilla Firefox), whereas a web server is a computer/software that stores websites and delivers web pages to browsers (e.g. Apache, IIS).
  • Location: Browser is installed on the user’s device, while the web server runs on a remote server machine in a data centre.
OR – 3G vs 4G:
  • Speed: 3G provides lower data speed suitable for basic browsing and SD video; 4G offers much higher speed that supports HD video streaming and fast downloads.
  • Technology / services: 4G supports advanced services like high-quality video calls, online gaming and better VoIP quality compared to 3G.
Section–C (LA–II • 4 Marks Each)
Q8. Case Study – Mr. Harish (work from home accountant). Answer any four sub-questions.
(i) For an online meeting where he can see and talk to clients, he should use a video conferencing service such as Zoom / Google Meet / Microsoft Teams.

(ii) When Mr. Pritish sends an e-mail, the main protocol involved in sending the mail is SMTP (Simple Mail Transfer Protocol).

(iii) To send high-security documents using a file transfer application, the protocol should be SFTP – Secure File Transfer Protocol (secure version of FTP).

(iv) To research latest accounting trends by locating sites online, he should use a search engine (for example, Google, Bing).

(v) When Joseph sends a link containing important company files, Mr. Harish should click the link in his web browser (and, if required, log in) to access or download the files.
Q9. Write the HTML code to design the webpage as shown (HTML TABLE) according to the given specifications (any four out of five).
A sample HTML code satisfying the specifications (proper structure, heading, LightCyan background, 4×4 table with rowspan and colspan) is:
<html>
<head>
  <title>HTML TABLE</title>
</head>
<body bgcolor="LightCyan">
  <h1>HTML TABLE</h1>
  <table border="1">
    <tr>
      <th>Row 1</th>
      <th>Col 1</th>
      <th>Col 2</th>
      <th>Col 3</th>
    </tr>
    <tr>
      <td rowspan="2">A</td>
      <td>B</td>
      <td colspan="2">C</td>
    </tr>
    <tr>
      <td>D</td>
      <td>E</td>
      <td>F</td>
    </tr>
    <tr>
      <td colspan="2">G</td>
      <td colspan="2">H</td>
    </tr>
  </table>
</body>
</html>
(Exam-এ শুধু given figure অনুযায়ী cell-এর text ও rowspan/colspan adjust করবে, কিন্তু overall structure এই রকমই থাকবে।)

End of Term–2 Model Answers • Use this page for practice and quick revision.