Week 1 Flashcards

1
Q

T/F - The internet is a collection of computer networks, the web is a collection of sites and pages

A

True

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

T/F - The internet is hardware plus protocols, while the world wide web is software plus protocols

A

True

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

T/F - The web follows a client/server model

A

True

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

T/F - A web server is different from a computer

A

False. A web server is a computer that responds to HTTP request

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

WAMP - What does it refer to?

A

Windows OS
Apache web server
MySQL database
PHP scripting language

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

Interpreting HTML markup with its images/assets into a grid of pixels for display is called

A

rendering the webpage

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

HTTP stands for Hypertext Transfer Protocol

A

TRUE

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

T/F - HTTP error 200 means OK

A

True

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

T/F - HTTP error 403 means page has moved

A

False. error 403 means you are forbidden to access this page. 301-303 means paged moved.

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

T/F - HTTP error 301-303 means the page has moved

A

True

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

T/F - HTTP error 500 means the page was not found

A

False. HTTP error 500 means internal server error.

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

T/F - 404 means page not found

A

True

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

TCP/IP provide protocol rules to ______ how data packets are transferred over the internet, it’s implemented in _____ operating system

A

govern, every

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

192.168.201.1 The first 3 groups of numbers are….

The last set of number(s) is the….

A

Network ID

Host ID

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

T/F - A port number is a number which serves as a communication endpoint for 2 computers

A

True

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

put these in order
Upon entering a URL into the browser:
* ask the DNS server for the IP address of a certain site
* display the resulting page on the screen
* ask the server to GET the requested file
* connect to that IP address at port 80

A

ask the DNS server for the IP address of a certain site
* connect to that IP address at port 80
* ask the server to GET the requested file
* display the resulting page on the screen