Long Answer of HTML
Long Answer of HTML
Unit 1
Answer
1.Internet is a global network of billions of computers and other electronic devices that are
connected together. It allows users to access almost any information, communicate with anyone
else in the world, and do much more. The advantages of the Internet include the ability to send and
receive instant electronic messages through email, access to information on a wide range of topics,
and availability 24 hours a day, 7 days a week. However, there are also some disadvantages such as
the potential for theft of personal information through electronic messages sent over the Internet.
2.Internet is a global network of computers and other electronic devices that are connected
together. Intranet is a private network that is used within an organization to share information and
resources among employees. Extranet is an extension of an intranet that allows authorized external
users to access certain parts of an organization’s intranet.
Unit 2
Answer
3. The World Wide Web (WWW) is a system of interlinked hypertext documents accessed via the
internet. It allows users to access and share information through web pages, websites, and other
resources. However, there are some disadvantages to using the WWW, such as difficulty in
prioritizing and filtering information, no guarantee of finding what one is looking for, danger in
case of overload of information, lack of quality control over available data, and no regulation.
4. TCP (Transmission Control Protocol) and UDP (User Datagram Protocol) are both transport layer
protocols used for communication over the internet. The main difference between them is that
TCP provides reliable delivery services by ensuring that all packets are received in order and
without errors, while UDP does not provide reliability but offers faster transmission speeds.
5. Internet Protocol (IP) is a set of rules that governs the communication and exchange of data over
the internet. Both the sender and receiver must follow the same protocols to communicate
data. When a user requests a web page on the internet, somewhere in the world, the server
processes that request and sends back an HTML Page to that user using a protocol called HTTP.
The HTTP then requests the TCP layer to set up the required connection and send the HTML file.
The TCP breaks down data into small packets and forwards it toward IP layer which sends
packets to their destination through different routes.
6. The applications of the internet are vast and varied. Some common applications include email
communication, online shopping, social networking sites like Facebook or Twitter, online banking
services like PayPal or Venmo, video conferencing tools like Zoom or Skype for remote meetings or
classes, cloud storage services like Google Drive or Dropbox for storing files remotely accessible from
anywhere with an internet connection etc.
Unit 3
Unit 4
1.Explain the difference between container and non-container elements with appropriate
example.
Unit 5
4. How to link various pages of the website? in how many ways the link can be created. or Explain
1. The <INPUT> element in HTML is used to create different types of form controls that allow users
to input data. Some of the available <INPUT> elements are:
- <input type=”radio”>: creates a radio button for selecting one option from many
2. The <FORM> tag in HTML is used to create an HTML form for user input. It has several attributes
that can be used to customize its behavior, such as:
- action: specifies the URL of the file that will process the form data when submitted
- method: specifies the HTTP method (GET or POST) used to submit the form data
- target: specifies where to display the response after submitting the form (e.g., in a new window)
- enctype: specifies how to encode the form data before sending it to the server (e.g.,
multipart/form-data for file uploads)
- colspan and rowspan attributes: allow cells to span multiple rows or columns
4. To link various pages of a website, we can use the <a> tag in HTML. This tag is used to create
hyperlinks that allow users to navigate between pages or websites. There are two ways to create
links using this tag:
- Absolute links: specify the full URL of the page being linked (e.g.,
https://www.example.com/page.html)
- Relative links: specify only part of the URL, relative to the current page’s location (e.g., page.html or
../page.html). Relative links are often preferred because they are shorter and easier to maintain if
page locations change.