You are on page 1of 5

Programme Name: BCS IT (Hons.

Course Code: CSC 2514

Course Name: Web System and Technologies

Submitted By: Submitted To:

Student Name: Rakshya Nepali Faculty Name: Prakash Chandra

IUKL ID: 041902900050 Department: LMS

Semester: Fourth

Intake: Sep, 2019

1. List down the Internet services.


➢ Internet Services allows us to access huge amounts of information such as text,
graphics, sound and software over the internet. Some of their services are listed
below:
a. World Wide Web (WWW)

WWW is also known as W3. It offers a way to access documents spread over
several servers over the internet. These documents may contain texts,
graphics, audio, video, hyperlinks. The hyperlinks allow the users to navigate
between the documents.

b. Video Conferencing

Video conferencing or Video teleconferencing is a method of communicating


by two-way video and audio transmission with help of telecommunication
technologies.

c. Web Services

Web services allow exchange of information between applications on the web.


Using web services, applications can easily interact with each other.

d. Information Retrieval Services

There exist several Information retrieval services offering easy access to


information present on the internet.

e. Communication Services

There are various Communication Services available that offer exchange of


information with individuals or groups.

2. Briefly describe the following terms:

a. Session

A session is a temporary and interactive information exchange between two


or more communication devices, or between a computer and a user, in the
field of computer science and networking in particular.A session is started at
one point in time and subsequently ended at another.

b. Cookies
Cookies are tiny data blocks created by a web server while a user is accessing
a website and stored by the user's web browser on the user's computer or
other device. Cookies are stored on the device used to access a website, and a
user's device may get multiple cookies throughout a session.

c. Web browser

A web browser is a tool or application that takes us anywhere on the internet.


It collects information from other parts of the web and displays it on our
systems (desktop/mobile). The collected information is transferred using the
hypertext transfer protocol (HTTP). It defines how the images, text, video
and other media files are transmitted on the internet.

d. Domain Name
A domain name is an identification string that defines a realm of
administrative autonomy, authority or control within the Internet. Domain
names are used in various networking contexts and for application-specific
naming and addressing purposes.

3. Write HTMLcodes and required internal CSS for the figure given below:

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<meta name="description" content="Personal information on
marks.">
<meta name="author" content="Rakshya Nepali">
<title>Document</title>
<!-- internal CSS -->
<style>
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
margin: 0px;
padding: 0px;
}
hr {
color: rgba(169, 169, 169, 0.665);
}
</style>
</head>

<body>
<h3>Personal Information</h3>
<img src="/smiling.png" alt="smiling emoji" height="50px"
width="50px">
<hr>
<div class="marks_table">
<table>
<tr>
<th> </th>
<th>Math</th>
<th>Science</th>
<th>English</th>

</tr>
<tr>
<th>First Internal </th>
<td>20</td>
<td>30</td>
<td>23</td>

</tr>
<tr>
<th>Second Internal</th>
<td>25</td>
<td>35</td>
<td>28</td>
</tr>
</table>

</div>

<hr>
<div class="beverages">
<p>My favourite beverages:

<ol>
<li>Tea</li>
<li>Coffee</li>
<li>Coca-Cola</li>
</ol>
</p>
</div>
</body>

</html>

OUTPUT:

You might also like