0% found this document useful (0 votes)
30 views7 pages

Computer Security & HTML Q&A Worksheets

The document provides a comprehensive overview of two chapters: Computer Security and HTML. Chapter 1 covers topics such as computer threats, types of viruses, antivirus software, firewalls, cyber crime, and the importance of data backup, along with related questions and worksheets. Chapter 2 focuses on HTML, explaining its structure, tags, formatting, lists, images, links, and includes worksheets for practice.

Uploaded by

mahimehra1337
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views7 pages

Computer Security & HTML Q&A Worksheets

The document provides a comprehensive overview of two chapters: Computer Security and HTML. Chapter 1 covers topics such as computer threats, types of viruses, antivirus software, firewalls, cyber crime, and the importance of data backup, along with related questions and worksheets. Chapter 2 focuses on HTML, explaining its structure, tags, formatting, lists, images, links, and includes worksheets for practice.

Uploaded by

mahimehra1337
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Thanks!

Aapke notebook syllabus ke base par Chapter 1: Computer Security aur Chapter
2: HTML ke liye topic-wise question-answer aur worksheet neeche bana raha hoon.

Chapter 1: Computer Security


Topic-Wise Question & Answer
1. Understanding Computer Threats
Q: What are computer threats?
A: Computer threats are potential dangers that can harm computer systems or data like
viruses, hackers, or unauthorized access.
(Hindi: Computer threats aise khatre hote hain jo system ya data ko nuksaan pahucha sakte
hain.)
2. Types of Virus and Their Effects
Q: Name any two types of computer viruses.
A: Trojan Horse and Worm.
Q: How do viruses affect a computer?
A: Viruses can delete files, slow down performance, or steal information.
3. Anti-Virus Software (Purpose and Examples)
Q: What is antivirus software?
A: Antivirus software detects and removes harmful programs.
Examples: Quick Heal, Norton, Avast.
4. Firewalls – Functions and Importance
Q: What is a firewall?
A: A firewall is a security system that monitors and controls incoming and outgoing network
traffic.
Function: Blocks unauthorized access.
5. Cyber Crime and Computer Ethics
Q: What is cyber crime?
A: Illegal activities done using computers or the internet.
Q: What is computer ethics?
A: Guidelines for proper and moral use of computers.
6. Cyber Law and Their Significance
Q: What are cyber laws?
A: Rules and regulations that govern online behavior and punish cyber crimes.
7. Backup and History Process
Q: Why is data backup important?
A: It helps in recovering lost or corrupted data.

Worksheet: Chapter 1
MCQs:
1. Which one is NOT a computer virus?
a) Worm
b) Trojan
c) Firewall
d) Spyware
2. Firewall is used to:
a) Clean files
b) Protect network
c) Increase RAM
d) Share files
True/False:
1. Antivirus is used to create viruses.
2. Cyber crime is legal and safe.
3. Firewall protects the computer from unauthorized access.
4. Data backup is not necessary.

Chapter 2: HTML (Hyper Text Markup Language)


Topic-Wise Question & Answer
1. Editing Text (H1, H2, H6)
Q: What are heading tags in HTML?
A: <h1> to <h6> tags define headings. <h1> is the largest and <h6> the smallest.
2. Line Break and Horizontal Rules
Q: Which tag is used for a line break?
A: <br>
Q: Which tag adds a horizontal line?
A: <hr>
3. Comments in HTML
Q: How do you add comments in HTML?
A: <!-- This is a comment -->
4. Setting Background Colours
Q: How to set a background color in HTML?
A: Using bgcolor or CSS like: <body style="background-color: yellow;">
5. Common Tag Attributes (Size, Base, Colour)
Q: What is an attribute in HTML?
A: An attribute adds extra information to HTML tags like size, color etc.
6. Text Alignment (Center, Left, Right)
Q: How to align text in HTML?
A: Using align attribute: <p align="center">Text</p>

Worksheet: Chapter 2
Fill in the blanks:
1. The <br> tag is used for __________.
2. HTML comments are written as __________.
3. <h1> is the __________ heading tag.
4. Text can be aligned using the __________ attribute.
True/False:
1. <h6> is the largest heading.
2. <hr> tag creates a new paragraph.
3. Comments are visible on the webpage.
4. Background colors can be added using the bgcolor attribute.

Bilkul! Yahaan main **HTML (HyperText Markup Language)** ke complete notes *basic
se advanced level tak* clear aur simple tarike se de raha hoon — bina class mention kiye, sirf
concepts par focus hai.

## **HTML Notes (With Hindi Explanation)**

### **1. Introduction to HTML**


**HTML (HyperText Markup Language)** is the standard language for creating webpages.
- It tells the browser how to display content.
- HTML uses **tags** (like `<html>`, `<p>`, `<h1>` etc.)

**Hindi:** HTML ek markup language hai jiska use webpages banane ke liye hota hai.

### **2. Basic Structure of an HTML Document**


```html
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Welcome</h1>
<p>This is my first webpage.</p>
</body>
</html>
```

**Explanation in Hindi:**
- `<!DOCTYPE html>` – Yeh batata hai ki document HTML5 mein hai.
- `<html>` – Yeh pura HTML document hota hai.
- `<head>` – Isme title aur settings hoti hain.
- `<body>` – Jo user ko browser par dikhega, woh sab yahan hota hai.

### **3. Headings & Paragraphs**


- Headings: `<h1>` to `<h6>` (largest to smallest)
- Paragraph: `<p>Text here</p>`
**Example:**
```html
<h1>Main Heading</h1>
<h2>Sub Heading</h2>
<p>This is a paragraph.</p>
```

### **4. Line Break & Horizontal Rule**


- Line Break: `<br>`
- Horizontal Line: `<hr>`

**Example:**
```html
<p>This is line one.<br>This is line two.</p>
<hr>
```

### **5. Formatting Tags**


- Bold: `<b>Text</b>`
- Italic: `<i>Text</i>`
- Underline: `<u>Text</u>`

### **6. Lists in HTML**


- **Ordered List (Numbered)** – `<ol><li>Item</li></ol>`
- **Unordered List (Bullets)** – `<ul><li>Item</li></ul>`

### **7. Adding Images**


```html
<img src=”[Link]” alt=”My Image” width=”300” height=”200”>
```

**Hindi:** Image ka path `src` mein diya jata hai, aur `alt` se alternate text set hota hai.

### **8. Creating Links**


```html
<a href=[Link] Google</a>
```
**Hindi:** `<a>` tag se kisi doosri site ya page par ja sakte hain.

### **9. Background & Text Color**


```html
<body bgcolor=”lightblue” text=”black”>
```

Ya CSS style ke saath:


```html
<body style=”background-color:yellow; color:red;”>
```

### **10. Tables in HTML**


```html
<table border=”1”>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Ali</td>
<td>21</td>
</tr>
</table>
```

### **11. Forms in HTML**


```html
<form>
Name: <input type=”text”><br>
Password: <input type=”password”><br>
<input type=”submit”>
</form>
```
Yeh raha **HTML Worksheet** — beginner level se based, jisme MCQs, Fill in the Blanks,
True/False aur Short Questions include hain. Ye worksheet aap students ko practice ke liye
de sakte ho.

## **HTML Worksheet**

### **Section A: Multiple Choice Questions (MCQs)**


**1. HTML stands for:**
a) HighText Machine Language
b) HyperText Markup Language
c) Hyperloop Text Markup Language
d) None of these

**2. Which tag is used to display a paragraph?**


a) `<h1>`
b) `<body>`
c) `<p>`
d) `<br>`

**3. Which tag creates a numbered list?**


a) `<ul>`
b) `<ol>`
c) `<li>`
d) `<list>`

**4. What is the correct tag to add an image?**


a) `<img href=”[Link]”>`
b) `<img src=”[Link]”>`
c) `<image src=”[Link]”>`
d) `<pic src=”[Link]”>`

**5. `<a>` tag is used to:**


a) Add image
b) Create table
c) Make a hyperlink
d) Show alert

### **Section B: Fill in the Blanks**

1. The tag used to insert a line break is __________.


2. The largest heading tag is __________.
3. __________ attribute is used to set the background color of a webpage.
4. __________ tag is used to write a comment in HTML.
5. Ordered lists use the __________ tag.

### **Section C: True or False**

1. HTML is a programming language. (____)


2. `<hr>` tag creates a horizontal line. (____)
3. You can use `<img>` tag to insert an image. (____)
4. `<ol>` stands for Ordered List. (____)
5. The `<b>` tag is used to make text italic. (____)

### **Section D: Short Answer Questions**

1. What is HTML?
2. Write the basic structure of an HTML page.
3. Name any three formatting tags and explain their use.
4. How do you create a link in HTML?
5. Write a simple HTML code to create a list of three fruits.

Common questions

Powered by AI

A structured approach to learning HTML from basic to advanced levels is significant as it ensures comprehensive understanding and gradual progression. This method allows learners to build a solid foundation, understanding the essential syntax and concepts before tackling more complex aspects of HTML. Without class-based restrictions, learning can be self-paced and tailored to the individual's needs, fostering a deeper mastery of the subject. This holistic approach not only broadens the learner's competence but also enhances their ability to translate ideas into web formats efficiently .

The ability to create images and links in HTML is significant because it enhances the interactivity and visual appeal of web pages, thereby increasing user engagement. Images allow for visual storytelling and can make complex data more accessible. Links make navigation intuitive by connecting users to additional resources or related content, enriching the browsing experience. Together, they transform static pages into interactive sites, encouraging users to explore further and spend more time on-site, which is crucial for maintaining user interest and improving retention rates .

HTML attributes provide additional information that enhances both the functionality and aesthetics of a webpage. Attributes like 'align', 'bgcolor', and 'style' allow for customization of text positioning, background colors, and overall page layout, enhancing visual appeal. Functionally, attributes such as 'href' for linking and 'src' for images facilitate navigation and multimedia integration, making the webpage interactive and user-friendly. Overall, attributes are crucial for personalizing the user experience and ensuring the page effectively meets its objectives .

The basic structure of an HTML document facilitates effective web page development by providing a clear framework for organizing content. The structure consists of essential tags, such as <!DOCTYPE html> to declare the document type, <html> to encapsulate the entire document, and <head> and <body> for content division. This layout ensures that content is correctly displayed by browsers, enhances accessibility, and allows developers to easily maintain and update web pages. Moreover, a well-organized structure improves SEO by enabling search engines to efficiently parse and index the page contents .

Firewalls not only monitor and control incoming and outgoing traffic but also serve as a barrier protecting internal networks from unauthorized access. They can filter traffic based on predefined security rules, thereby preventing malicious data from entering the network. Firewalls can be configured to completely block certain apps or services, offering a customizable layer of network security .

Backup processes have a significant impact on data recovery and management strategies by ensuring data availability and integrity during unforeseen incidents like system failures or cyberattacks. Regular backups allow organizations to quickly restore lost or corrupted data, maintaining business continuity and minimizing downtime. Additionally, robust backup strategies help secure data against ransomware attacks and data losses, ultimately enhancing data management by enabling audits, compliance checks, and strategic planning .

Antivirus software and firewalls work together to protect computer systems by providing complementary layers of security. Antivirus software identifies, quarantines, and removes malicious software, protecting systems from viruses and malware threats. It actively scans for known threats and monitors behaviors for suspicious activity. Meanwhile, firewalls regulate traffic between internal networks and the internet, blocking unauthorized access and preventing intrusions. Together, they create a comprehensive security protocol, with antivirus focusing on internal threats and firewalls addressing external risks .

A Trojan Horse needs to be invited into the system through an action by the user, such as downloading a file, and it typically disguises itself as legitimate software. On the other hand, a Worm can replicate itself and spread across networks without any user intervention, exploiting vulnerabilities in systems to do so.

Computer ethics play a critical role in preventing cyber crimes by establishing guidelines and principles for the responsible use of technology. By promoting the ethical use of computers, these guidelines help prevent misuse, reduce security risks, and encourage accountability among users. As technology becomes ingrained in daily life, ethical frameworks are crucial for guiding behavior in ways that prevent data breaches, hacking, and intellectual property theft. Furthermore, ethics education can foster a culture of awareness and vigilance that supplements technical security measures .

Cyber laws significantly influence digital security by providing a legal framework that governs online interactions and penalizes cyber crimes. These laws deter individuals from engaging in illegal activities like hacking, identity theft, and online fraud by imposing strict penalties and legal consequences. The introduction and enforcement of such laws create a secure cyberspace where users are protected from malicious threats. Furthermore, cyber laws encourage organizations to implement robust security measures and data protection policies, thus enhancing overall security posture .

You might also like