0% found this document useful (0 votes)
1K views

important question answer

Computer Application code 165 notes important Question Answer

Uploaded by

kirthicare
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)
1K views

important question answer

Computer Application code 165 notes important Question Answer

Uploaded by

kirthicare
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
You are on page 1/ 12

Unit 1: HTML (Web Page Designing)

2 Marks Questions:

1. What is an HTML tag? Give two examples.


2. What is the difference between <ul> and <ol> tags in HTML?
3. Explain the use of the <img> tag in HTML.
4. What are the attributes of the <a> tag used for linking?
5. What is the purpose of the <br> tag in HTML?
6. What is the use of the <hr> tag in HTML?
7. List any two attributes of the <table> tag.
8. What does the <b> tag do in HTML?

3 Marks Questions:

1. Write the basic structure of an HTML document.


2. Explain the difference between <h1> to <h6> tags in HTML.
3. What are the attributes of the <font> tag?
4. How can you insert an image in an HTML page? Write the syntax.
5. What is the use of the <form> tag in HTML? Write the syntax to create a form
with a text field and a submit button.
6. Explain how to create an unordered list and an ordered list in HTML with
examples.
7. What is the difference between <p> and <div> tags in HTML?

5 Marks Questions:

1. Write an HTML code to create a webpage with a heading, a paragraph, and an


image.
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.
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.
4. Write an HTML code to embed an audio file and a video file on a webpage.
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.
6. Write an HTML code to create a list of five items using the <ul> tag.
Unit 2: Cyber Ethics

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:

1. Explain the concept of open source software with an example.


2. What are the consequences of plagiarism in the digital world?
3. What is the importance of privacy on e-commerce websites?
4. Explain the term "Digital Property Rights."
5. Discuss the ethical issues related to the digital divide.
6. What are the key aspects of netiquette that should be followed while using the
internet?
7. How do software licenses help protect the rights of creators?
8. What is e-commerce, and what are the key issues concerning e-commerce like
fraud and secure data transmission?

5 Marks Questions:

1. Explain in detail the concept of netiquette and its importance in online


communication.
2. Discuss the different types of software licenses and their significance.
3. What are Intellectual Property Rights? How do they protect digital content?
4. Explain the concept of "Freedom of Information" and its impact on society.
5. Discuss the challenges of the digital divide and suggest ways to overcome it.
6. What are the key ethical issues related to e-commerce? Explain how privacy and
fraud are managed in secure online transactions.
Unit 3: HTML - Web Page Designing (continued)

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:

1. Explain how to insert a table in HTML with an example.


2. Write an HTML code to create a form with a text box, a password field, and a
submit button.
3. Explain the significance of linking in HTML. How do you create a link to
another webpage?
4. What are the advantages of using CSS along with HTML in web design?
5. Write HTML code to create an ordered list with 3 items.
6. How can you create a paragraph and add line breaks in HTML?

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".

General Tips for Preparation:


 Focus on Tags & Syntax: Be clear with the syntax of key HTML tags like <html>,
<head>, <body>, <img>, <table>, <form>, <a>, <ul>, and <ol>.
 Understand Cyber Ethics: Get a solid understanding of issues like netiquette,
plagiarism, software licenses, digital property rights, and the digital divide.
 Practice Writing Code: HTML-based questions often require you to write actual
code. Practice writing simple HTML codes and formatting them with CSS.
 Important Topics for E-commerce: Ensure you understand security concerns in e-
commerce, such as fraud, privacy, and secure data transmission.
Unit 1: HTML (Web Page Designing)

2 Marks Questions:

1. What is an HTML tag? Give two examples.


o HTML tag: Tags are the building blocks of an HTML document used to
define the structure and content of a web page. They are enclosed in angle
brackets (e.g., <tagname>).
o Example tags: <h1> (heading), <p> (paragraph).
2. What is the difference between <ul> and <ol> tags in HTML?
o <ul>: Unordered list (items are listed with bullets).
o <ol>: Ordered list (items are listed with numbers or letters).
3. Explain the use of the <img> tag in HTML.
o The <img> tag is used to insert images into a webpage. It uses attributes like
src (source of the image), alt (alternative text), width and height.
 Example: <img src="image.jpg" alt="image description"
width="300" height="200">
4. What are the attributes of the <a> tag used for linking?
o The <a> tag is used to create hyperlinks. Key attributes include:
 href: Specifies the URL of the linked page.
 target: Defines where the linked page will open (e.g., _blank opens
in a new tab).
5. What is the purpose of the <br> tag in HTML?
o The <br> tag is used to insert a line break in the text, moving the following
content to the next line.
6. What is the use of the <hr> tag in HTML?
o The <hr> tag creates a horizontal line across the page, used for separating
content.
7. List any two attributes of the <table> tag.
o border: Specifies the border width of the table.
o cellspacing: Specifies the space between cells.
8. What does the <b> tag do in HTML?
o The <b> tag is used to make the enclosed text bold.

3 Marks Questions:

1. Write the basic structure of an HTML document.

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">

o src: The source or path of the image.


o alt: Alternative text for the image.
o width and height: Dimensions of the image.
5. What is the use of the <form> tag in HTML? Write the syntax to create a form
with a text field and a submit button.

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>

o Ordered List (<ol>):

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:

1. Write an HTML code to create a webpage with a heading, a paragraph, and an


image.

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>

Unit 2: Cyber Ethics

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:

1. Explain the concept of open-source software with an example.


o Open-source software is software whose source code is made publicly
available for anyone to view, modify, and distribute. Example: Mozilla
Firefox is an open-source web browser.
2. What are the consequences of plagiarism in the digital world?
o Plagiarism can lead to legal consequences, loss of credibility, academic
penalties, and damage to one's reputation. It also undermines creativity and
originality.
3. What is the importance of privacy on e-commerce websites?
o Privacy ensures that users' personal and financial information is protected
from unauthorized access, fostering trust between users and e-commerce
platforms.
4. Explain the term "Digital Property Rights."
o Digital Property Rights refer to the rights of creators and owners of digital
content, including software, multimedia, and online intellectual property,
ensuring their work is protected from unauthorized use.
5. Discuss the ethical issues related to the digital divide.
o The digital divide creates inequality in access to information, education, and
job opportunities. It also exacerbates social and economic disparities.
6. What are the key aspects of netiquette that should be followed while using the
internet?
o Key aspects of netiquette include being respectful, using polite language, not
sharing personal or sensitive information, and respecting others' opinions and
privacy.
7. How do software licenses help protect the rights of creators?
o Software licenses protect creators by outlining how their software can be used,
modified, and distributed. They can prevent unauthorized copying,
distribution, or modification.
5 Marks Questions:

1. Explain in detail the concept of netiquette and its importance in online


communication.
o Netiquette includes rules for respectful and responsible online behavior. It
promotes positive communication, reduces misunderstandings, and ensures
that all users can engage in a safe, friendly, and respectful environment.
2. Discuss the different types of software licenses and their significance.
o Types of Software Licenses:
 Proprietary License: The software is owned and restricted in usage.
 Open Source License: Allows free modification and distribution (e.g.,
GNU General Public License).
 Freeware License: Software is free but may have limited functionality
or restricted redistribution.
o Software licenses protect the rights of creators and specify terms of use.
3. What are Intellectual Property Rights? How do they protect digital content?
o IPR protects the intellectual creations of individuals or organizations (e.g.,
patents, copyrights, trademarks). It prevents unauthorized use, copying, or
distribution of digital content.
4. Explain the concept of "Freedom of Information" and its impact on society.
o Freedom of Information is the right to access information held by public
authorities. It fosters transparency, accountability, and informed decision-
making in democratic societies.
5. Discuss the challenges of the digital divide and suggest ways to overcome it.
o The digital divide creates gaps in access to technology, leading to inequalities
in education, employment, and information. Solutions include improving
internet access, providing affordable technology, and promoting digital
literacy programs.
6. What are the key ethical issues related to e-commerce? Explain how privacy and
fraud are managed in secure online transactions.
o Key Issues: Privacy concerns, fraudulent transactions, and security breaches.
o Privacy: Online platforms ensure privacy by encrypting personal and financial
data.
o Fraud: Fraud is minimized through secure payment systems, SSL certificates,
and user authentication processes.

Unit 3: HTML - Web Page Designing (continued)

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>

4. What does the target="_blank" attribute do in an anchor tag?


o target="_blank" opens the linked document in a new browser tab or
window.
5. How do you create a description list in HTML?

html
Copy code
<dl>
<dt>Term 1</dt>
<dd>Description of Term 1</dd>
</dl>

3 Marks Questions:

1. Explain how to insert a table in HTML with an example.

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>

3. Explain the significance of linking in HTML. How do you create a link to


another webpage?
o Linking in HTML allows users to navigate between pages. The <a> tag
creates a hyperlink.

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.

You might also like