2.2 Web and HTTP Flashcards

1
Q

object definition

A

what makes up a web page

can be a JPEG image, HTML file, Java applet, audio file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

webpage definition

A

consists of a base HTML-file that includes several referenced objects

each object is addressable by a URL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

name the parts of this URL: https://www.psu.edu/news/academics/featured-courses

A

host name:
www.psu.edu

path:
name/news/academics/featured-courses

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

HTTP definition

A

Hypertext Transfer Protocol

protocol = defines format and order of messages sent/received

HTTP = the web browser’s language; allows web browsers to communicate with servers for loading websites

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What type of architecture does HTTP use and how does HTTP use it?

A

client/server

client = a browser that requests, receives, and displays web objects

server = a Web server that, using HTTP, sends objects in response to requests

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Does HTTP use TCP or UDP?

A

TCP; more reliable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the steps of opening and closing a TCP connection with HTTP

A
  1. client opens a TCP connection to a web server (creates a socket)
  2. server accepts TCP connection from client
  3. HTTP messages are exchanged between the browser (the HTTP client) and the Web server (the HTTP server)
  4. the TCP connection is closed
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the two types of HTTP connections and how do they compare?

A

Non-persistent HTTP:
downloading multiple objects requires multiple connection
1. TCP connection is opened
2. at most 1 object is sent over the connection
3. TCP connection is closed

Persistent HTTP:
most common form of HTTP, cuts RTT in hlad
1. TCP connection is opened to a server
2. multiple objects can be sent over a single TCP connection between client and that server
3. TCP connection is closed
most common form of HTTP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does it mean that HTTP is stateless?

A

Each request sent by a client to the HTTP server is independent and not remembered by the server

Features like cookies are used to maintain state when needed, like for authentication (keep you sign in)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

RTT meaning

A

Round-Trip Time: how long it takes for a small packet to travel from the client to the server and back again

Non-persistent HTTP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Formula to calculate non-persistent HTTP response time

A

2 * RTT + file transmission time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Non-persistent HTTP issues

A

Requires 2 RTTs per object

OS overhead (operating system processing time)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

HTTP request message format and its methods

A

the first line is called the request line, which starts with method name (e.g. “GET”), followed by a URL, followed by HTTP

the 4 methods:
1. POST - for form input
2. GET - for sending data to server
3. HEAD - requests headers
4. PUT - uploads new file (object) to server

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How many types of messages does HTTP have?

A

Two: response and request

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

HTTP response message format and its status codes

A

the first line is called the status line, which starts with HTTP version number, followed by status code and a status phrase

Some status codes:
200 OK = request succeeded
301 Moved Permanently = request object has moved, its new location is later in this message
400 Bad Request = request message not understood by the server
404 Not Found = requested document not found on this server
505 HTTP Version Not Supported = what the title says

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

HTTP cookie definition

A

code used by the server to access information about earlier interactions with the browser

makes web browsing faster

though HTTP is technically a “stateless” protocol, a web server can maintain some user state (remember user’s past)

17
Q

cookies’ use cases

A

authorization (keeping you logged in)
shopping carts
recommendations
email

18
Q

proxy server definition

A

proxy server - a middle server between host and the internet

acts as both a client and a server

gives the client (the host) web access via cache

19
Q

proxy server benefits

A

saves bandwidth for the host

privacy - hides IP address

can block certain websites

faster browsing–stores copies of popular websites to load them quicker
security

filters out malware

20
Q

web server definition

A

computer/software that stores and delivers websites to users when they request them through a browser

HOSTS websites

It’s like a restaurant: you (the browser) order food (a webpage), the kitchen (web server) prepares it, and the waiter (internet) delivers it to you!

21
Q

How is a web server related to HTTP?

A

web server uses HTTP to communicate with clients

HTTP is the protocol that defines how the server and client communicate

22
Q

‘conditional’ HTTP GET command meaning

A

This command only allows the server to send the requested object if it changed since last time

23
Q

purpose of HTTP GET command

A

used by the client to request a Web server to send an object