HTTP(S) Flashcards

1
Q

What is HTTP?

A

HTTP stands for HyperText Transfer Protocol and is used for communicating with web servers for transmitting of webpage data.

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

What is HTTP(S)?

A

HTTP(S) is just the secure version of Hypertext Transfer Protocol, meaning that it’s encrypted. Encrypted meaning that no can see any of the data that you send or receive also you have an assurance that you’ll be communicating with the right web server.

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

What’s a URL?

A

A URL is a set on instructions on how to access resources from the internet, also a URL is made up of 7 parts.

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

What are the seven parts of a URL?

A

Scheme, User, Host, Port, Path, Query String, and Fragment

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

What are HTTP Methods?

A

HTTP Methods are different ways of making your intention clear when you are sending an HTTP Request, theres a couple of different HTTP Methods but the ones that you should keep in mind are GET and POST.

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

GET Request

A

This method is used for getting information from a web server

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

POST Request

A

This method is used to add new information to the web server, likely adding new entries

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

PUT Request

A

This method is used so that you can replace already existing information on the web server. Essentially updating the information.

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

DELETE Request

A

This method is used to delete information from the web server

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

What is a Header?

A

A header is additional bits of data that you can send to a web server when making a request. Some different headers are sent from the client and sent back to the client from a web server.

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

What are Cookies?

A

Cookies are just small bits of data that are stored on your computer, Cookies get saved when you receive a Set-Cookie Header from the web server

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

What are Cookies used for?

A

Because HTTP is Stateless, it typically will not remember any information about you, this is where cookies come in to help the web server remember user information and key credentials

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