Q1. The acronym SSH stands for ______.
a) Safe Shell
b) Software Shell
c) Secure Shell
d) Simple Shell
Q2. Which of the following is an example of social networking website?
a) wikipedia.org
b) Facebook.com
c) cbse.gov.in
d) ncert.nic.in
Q3. M in HTML stands for:
a) Modify
b) Management
c) Multiple
d) Markup
Q4. A _____ is an online journal or informational website run by an individual, group, or corporation that offers regularly updated content about a topic.
a) News group
b) Blog
c) WWW
d) e-Groups
Q5. Which of the following is not a valid value for the target attribute of tag?
a) _blank
b) _self
c) _top
d) _bottom
Q6. link, vlink, alink are attributes of ____ tag.
a) <body>
b) <a>
c) <html>
d) <img>
Q7. The ____ attribute of tag specifies an alternate text for an image, if the image cannot be displayed.
a) alt
b) text
c) alternate
d) msg
Q8. Which of the following tag can be used to draw a horizontal line in webpage?
a) <line>
b) <hrule>
c) <hr>
d) <rule>
Q9. In HTML, <dl>, <dd> and <dt> tags are used to create:
a) Description list
b) Definition list
c) Detail list
d) Dynamic list
Q10. A software ____ is a legal instrument governing the use or redistribution of software.
a) license
b) law
c) document
d) piracy
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.
Q11. 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.
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
Q12. 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 <head> the section of each web page.
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
SECTION B (02 Marks each)
Q13. Write any two points of comparison in between SMS and MMS.
Ans:
|
SMS
|
MMS
|
|
Short Messaging Service
|
Multimedia Messaging Service
|
|
Allows only text messages.
|
Allows images and videos along with text.
|
|
Message length up to 160 characters.
|
Message length up to 1600 characters.
|
|
Less expensive.
|
More expensive.
|
Q14. What is e-Learning? Mention its two main advantages.
Ans: E-learning is a way of learning using digital devices like computers, laptops, tablets, and smartphones through the internet.
Advantages of E-Learning:
(i) Students can learn at their own speed
(iii) It is less expensive than traditional learning
(iv) It supports different learning styles of students
OR
Briefly discuss the role of e-governance in any country’s growth and development.
Ans: Nowadays, e-Governance plays an important role in a country’s growth and development. When it is properly planned and used, it helps the government provide services more quickly and efficiently. It makes rules and procedures easier to understand and follow.
E-Governance also increases people’s participation and builds trust in the government. It saves time and money for citizens, businesses, and the government.
Q15. Compare 3G and 4G mobile technologies on any two major points.
Ans:
| 3G |
4G |
| It stands for Third Generation mobile technology |
It stands for Fourth Generation mobile technology |
|
Slower internet speed |
Much faster internet speed |
|
Suitable for browsing and video calls |
Suitable for HD streaming and online gaming |
Q16. Which software are termed as open-source software? Name any two such software.
Ans: Open-source software is a type of computer software that is released under a license, but the source code is made available to all the users (public) to understand it, modify it or re-distribute it.
Name of two OSS: Linux, Firefox
OR
What do you understand by the term Intellectual property right? Discuss briefly.
Ans: These are the rights granted to individuals over their original creative works such as inventions, literary and artistic work, designs and symbols, names, and images in commerce. These legal rights are granted through patents, copyrights, trademarks, geographical indications, etc. for a specified time period.
Q17. Mention any two purposes of using comments while designing a HTML webpage.
Ans: (i) To explain the code - Comments help describe what a part of the code does.
(ii) To organize sections - Comments can separate different parts of the webpage (like header, body, footer).
(iii) To temporarily disable code - Developers can comment out a section of code without deleting it.
Q18. Twisha has got confused with a few tags and their attributes. Help her match the tag with correct attribute.
| Tag |
Attribute |
| 1. <font> |
i. align |
| 2. <a> |
ii. face |
| 3. <h1> |
iii. colspan |
| 4. <td> |
iv. href |
Ans:
| Tag | Attribute |
|---|
| 1. <font> | ii. face |
| 2. <a> | iv. href |
| 3. <h1> | i. align |
| 4. <td> | iii. colspan |
OR
Mention any two attributes of <font> tag along with their purposes.
Ans: (i) color - It is used to change the color of the text.
Example: <font color="red">Text</font>
(ii) size - It is used to change the size of the text.
Example: <font size="4">Text</font>
Q19. Write suitable html statements to display the following text on a webpage in appropriate subscript and superscript form:
a. CO2 - CO<sub>2</sub>
b. X2 - X<sup>2</sup>
SECTION C (03 Marks each)
Q20. 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 and 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.
Ans: Ronaldo should use css to implement extra styles in <h1> tag.
HTML Code:
<html>
<head>
<style>
h1 {color: blue;background-color:yellow;border: 2px solid red}
</style>
</head>
<body>
<h1>Welcome</h1>
</body>
</html>
<style> tag should be placed inside <head> tag of a webpage.
Q21. 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.
Ans: <video width="300" height="200" controls>
<source src="tiger.mp4" type="video/mp4">
</video>
Q22. Abhilasha has just designed a web page. At the end of the web page, she wants to insert an image “next.jpg”.
She needs to link another web page with this image, i.e., whenever anyone click on the
image “next.jpg”, another web page named “second.html” should open. Help her in writing the code to achieve it.
Note: Assume that image and both the web pages are stored in the same folder.
Ans: <a href="second.html"><img src="next.jpg"></a>
OR
Write HTML code to design the content of the web page in the form of lists as shown below:
Ans: <html>
<body>
STREAM WISE CAREER OPTIONS
<ul type="square">
<li>Science
<ol type="a">
<li>Engineering</li>
<li>Medical</li>
<li>Research</li>
</ol>
</li>
<li>Commerce</li>
<li>Humanities</li>
</ul>
</body>
</html>
Q23. What do you understand by the term “Digital Divide”? Mention any two measures to overcome it.
Ans: The digital divide is the unequal access to digital technology, including smartphones, tablets, laptops, and the internet in the society.
Two measures to overcome it:
(i) Increase affordability of digital technologies
(ii) More focus on development of internet infrastructure
Q24. Customer Analytics firm needs to design a survey form as shown below:
Write the suitable HTML code to design it.
Ans: <form>
Name: <input type="text"><br>
City: <br>
<select size=3>
<option>New Delhi</option>
<option>Chennai</option>
<option>Hydrabad</option>
</select><br>
Hobby: <br>
Reading<input type="checkbox">
Writing<input type="checkbox"><br>
Singing<input type="checkbox">
Dancing<input type="checkbox">
</form>
OR
Observe the screenshot of the given web page:
Write suitable HTML code to design it.
Ans: <html>
<body>
<table border=1>
<tr>
<th colspan=3>SKILL WORKSHOPS</th>
</tr>
<tr>
<th>SNO</th>
<th>SKILL</th>
<th>DAYS</th>
</tr>
<tr>
<td>1</td>
<td>Communication Skills</td>
<td>Monday, Wednesday</td>
</tr>
<tr>
<td>2</td>
<td>Art & Craft</td>
<td>Tuesday, Friday</td>
</tr>
<tr>
<td>3</td>
<td>Personality Development</td>
<td>Wednesday, Saturday</td>
</tr>
</table></body></html>
SECTION E (04 Marks each)
Q25. 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 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.
Ans: Popular video conferencing softwares: Skype, Zoom, Teams, Whatsapp.
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.
Ans: Two suitable web browsers: Google Chrome, Mozilla Firefox
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.
Ans: Remote login Software: AnyDesk
Protocol used in remotely login: TelNet
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?
Ans: https should be preferred as https allows transferring the data in an encrypted form.
Q26. Case Study 2
It is an era of Internet and we as a netizen spend most of our time in the cyber world. Saumya, a class X student, is new to the cyber world. Help her in the following:
a. Suggest any two netiquettes, which she should follow in order to become a good netizen.
Ans: (i) We should not violate copyright
(ii) We should share our expertise with others on the network
b. As the last day was approaching, so one of her friends has just submitted the science project by copying and pasting from the internet, without even acknowledging the original source. Is this the right act or wrong? Name the term which is being used for this act.
Ans: No its not the right act. This act is called plagiarism.
c. E-commerce is growing exponentially and so is the risk involved in it. Mention any two common E-commerce frauds in order to make Saumya aware about it.
Ans: (i) Identity Theft (ii) Phishing
d. Suggest her any two precautions to be taken while using E-commerce.
Ans: (i) Use updated antivirus software
(ii) Always ensure to check https in the web address
(iii) Read ratings and reviews before purchasing any product