important question answer
important question answer
2 Marks Questions:
3 Marks Questions:
5 Marks Questions:
2 Marks Questions:
1. What is netiquette?
2. What are the key differences between proprietary software and open source
software?
3. What is plagiarism?
4. What is the digital divide?
5. What does "Freedom of Information" mean?
6. What is an open-source software? Give one example.
7. What is the significance of Intellectual Property Rights (IPR)?
3 Marks Questions:
5 Marks Questions:
2 Marks Questions:
1. What are the main uses of the <sup> and <sub> tags in HTML?
2. What is the purpose of the <font> tag in HTML?
3. Write the syntax to insert a bold and italic text in HTML.
4. What does the target="_blank" attribute do in an anchor tag?
5. How do you create a description list in HTML?
3 Marks Questions:
5 Marks Questions:
1. Write an HTML code to create a webpage that includes the following: a heading,
a paragraph of text, a list of items, and a link to an external website.
2. Write HTML code to embed both audio and video files in a webpage.
3. Write an HTML code to create a form with the following: Name (text box),
Gender (radio buttons), Age (text box), and a Submit button.
4. Write the HTML code to create a table with two rows and three columns. The
first row should be a header, and the second row should contain data.
5. Write an HTML code to create a link to send an email to someone with the
subject "Inquiry".
2 Marks Questions:
3 Marks Questions:
html
Copy code
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
2. Explain the difference between <h1> to <h6> tags in HTML.
o <h1> to <h6> are heading tags. <h1> represents the largest heading, and <h6>
represents the smallest. These tags are used for structuring headings in a
document.
Example: <h1>Largest Heading</h1>, <h6>Smallest
Heading</h6>
3. What are the attributes of the <font> tag?
o The <font> tag is used for changing the font style of text. It has three key
attributes:
face: Specifies the font family (e.g., "Arial").
size: Specifies the size of the font (e.g., "3").
color: Specifies the color of the text (e.g., "red").
4. How can you insert an image in an HTML page? Write the syntax.
html
Copy code
<img src="image.jpg" alt="Image description" width="300"
height="200">
html
Copy code
<form action="/submit" method="post">
Name: <input type="text" name="username">
<input type="submit" value="Submit">
</form>
6. Explain how to create an unordered list and an ordered list in HTML with
examples.
o Unordered List (<ul>):
html
Copy code
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
html
Copy code
<ol>
<li>First</li>
<li>Second</li>
</ol>
7. What is the difference between <p> and <div> tags in HTML?
o <p>: Defines a paragraph and automatically adds space before and after the
content.
o <div>: Defines a section or block-level container, used for grouping content.
5 Marks Questions:
html
Copy code
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<p>This is a simple webpage with an image.</p>
<img src="image.jpg" alt="Sample Image" width="300" height="200">
</body>
</html>
2. Write an HTML code to create a table with 3 rows and 2 columns. The first row
should have headers, and the other rows should have data.
html
Copy code
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
<tr>
<td>Data 3</td>
<td>Data 4</td>
</tr>
</table>
3. Explain the use of forms in HTML. Write an HTML code to create a form with
the following fields: Name (text box), Gender (radio buttons), and a Submit
button.
html
Copy code
<form action="/submit" method="post">
Name: <input type="text" name="name"><br>
Gender:
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female<br>
<input type="submit" value="Submit">
</form>
4. Write an HTML code to embed an audio file and a video file on a webpage.
html
Copy code
<audio controls>
<source src="audio.mp3" type="audio/mp3">
</audio>
<video controls>
<source src="video.mp4" type="video/mp4">
</video>
5. Explain the working of the anchor (<a>) tag in HTML. How can it be used to link
to a website and to send an email? Provide examples.
o To link to a website:
html
Copy code
<a href="https://www.example.com">Visit Example</a>
o To send an email:
html
Copy code
<a href="mailto:[email protected]">Send Email</a>
6. Write an HTML code to create a list of five items using the <ul> tag.
html
Copy code
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
2 Marks Questions:
1. What is netiquette?
o Netiquette is the set of rules for polite and respectful behavior on the internet.
It includes using proper language, avoiding offensive content, and respecting
others' privacy.
2. What are the key differences between proprietary software and open source
software?
o Proprietary Software: Software that is owned by an individual or company
and has restrictions on its use, modification, and distribution.
o Open Source Software: Software whose source code is publicly available and
can be freely modified, used, and distributed.
3. What is plagiarism?
o Plagiarism is the act of using someone else's work, ideas, or words without
proper acknowledgment.
4. What is the digital divide?
o The digital divide refers to the gap between people who have access to digital
technologies (like the internet) and those who do not.
5. What does "Freedom of Information" mean?
o Freedom of Information refers to the right of individuals to access
information held by governments, institutions, or organizations, promoting
transparency and accountability.
6. What is an open-source software? Give one example.
o Open-source software is software that is freely available for use,
modification, and distribution. Example: Linux.
7. What is the significance of Intellectual Property Rights (IPR)?
o IPR protects the creations and innovations of individuals or organizations,
ensuring they have exclusive rights to use and profit from their work.
3 Marks Questions:
2 Marks Questions:
1. What are the main uses of the <sup> and <sub> tags in HTML?
o <sup>: Renders text as superscript (e.g., x²).
o <sub>: Renders text as subscript (e.g., H₂O).
2. What is the purpose of the <font> tag in HTML?
o The <font> tag was used to define the font style, size, and color of text in
HTML, but it is deprecated in favor of CSS.
3. Write the syntax to insert a bold and italic text in HTML.
html
Copy code
<b>This text is bold</b>
<i>This text is italic</i>
html
Copy code
<dl>
<dt>Term 1</dt>
<dd>Description of Term 1</dd>
</dl>
3 Marks Questions:
html
Copy code
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
</table>
2. Write an HTML code to create a form with a text box, a password field, and a
submit button.
html
Copy code
<form action="/submit" method="post">
Name: <input type="text" name="name"><br>
Password: <input type="password" name="password"><br>
<input type="submit" value="Submit">
</form>
html
Copy code
<a href="https://www.example.com">Visit Example</a>
4. What are the advantages of using CSS along with HTML in web design?
o Advantages: Separation of content and style, easier maintenance, consistent
design across pages, better user experience, and faster page loading.
5. Write HTML code to create an ordered list with 3 items.
html
Copy code
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
6. How can you create a paragraph and add line breaks in HTML?
html
Copy code
<p>This is a paragraph.<br>This is a new line.</p>
5 Marks Questions:
1. Write an HTML code to create a webpage that includes the following: a heading,
a paragraph of text, a list of items, and a link to an external website.
html
Copy code
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<p>This is a simple webpage with a list and a link.</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<a href="https://www.example.com">Visit Example</a>
</body>
</html>
2. Write HTML code to embed both audio and video files in a webpage.
html
Copy code
<audio controls>
<source src="audio.mp3" type="audio/mp3">
</audio>
<video controls>
<source src="video.mp4" type="video/mp4">
</video>
3. Write an HTML code to create a form with the following: Name (text box),
Gender (radio buttons), Age (text box), and a Submit button.
html
Copy code
<form action="/submit" method="post">
Name: <input type="text" name="name"><br>
Gender:
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female<br>
Age: <input type="text" name="age"><br>
<input type="submit" value="Submit">
</form>
4. Write the HTML code to create a table with two rows and three columns. The
first row should be a header, and the second row should contain data.
html
Copy code
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
</tr>
</table>
5. Write an HTML code to create a link to send an email to someone with the
subject "Inquiry".
html
Copy code
<a href="mailto:[email protected]?subject=Inquiry">Send Email</a>
These answers should provide comprehensive coverage of the key topics in your Class 10
Computer Applications (Code 165) exams.