topic: network / protocols Flashcards

(17 cards)

1
Q

what are the 9 protocols to remember

A

TCP, IP, UDP, HTTP, HTTPS, IMAP, POP, SMTP, FTP

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

what is a network

A

a single computer not connected to anything else is called a standalone computer
by connecting the device to another device via cable or wirelessly you have created a network

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

what is an example of the biggest network

A

the internet it is the biggest network in the world

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

what is a protocol

A

it allows devices to communicate
By ensuring all devices follow the same rules/ standards
so they interpret data/signals in the same way

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

what are standards

A

the fundamental building blocks for product development establishing consistent protocols
they are a set of hardware and software specifications allowing manufacturers to create products that are compatible with each other

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

what is the most popular standard

A

HTML - its an early standard with the world wide web for displaying web pages in browsers

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

what do the TCP and IP do together

A

transmission control protocol provides an error-free transmission between two router
Internet protocol routes packets(data which has been broken down into smaller chunks) across a WAN
together they make TCP/IP protocol stack, foundation of communication over the internet

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

what does the UDP do

A

user datagram protocol
uses a simple connnectionless transmission model
alternative to TCP that is without any error checking
send short messages and maintains two- way connections ideal for gaming
but less reliable than TCP

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

what does the HTTP/S do

A

hypertext transfer protocol is a way for clients and servers to send and recieve requests and deliver KTML pages
/S is the same but with encryption and authentication

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

what does SMTP do

A

transfers outgoing emails from email clients to servers
only sends them does not recieve them like POP and IMAP do

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

what does POP do

A

retrieves emails from a mail server and transfers them to your device
removing them from the server in the process

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

what does IMAP do

A

internet message access protocol
keeps emails on the mail server, allowing you to access your emails on multiple devices, while maintaining synchronocity between devices

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

what is the name of the four layers of the TCP/IP stack

A
  1. Application
  2. Transport
  3. Internet
  4. Network Interface/(Data) Link/Physical
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

if someone wanted to add the photo “UKstamps.jpg” how would that HTML code look like

A

(img src=”UKstamps.jpg”)
but with <> instead of the brackets

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

if someone wanted to find out more about UK stamps as a link to the UK Stamp Collectors Guild website which has the URL:
http:/ukstampcollectorsguild.co.uk
how would that HTML code look like

A

(a href=”http:/ukstampcollectorsguild.co.uk”)Find out More about UK stamps(/a)
but <> instead of the brackets

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

a site using styling set out as attributes in tags rather than a linked CSS file

17
Q

how to make a body tag have the styling attribute lightGreen to make the entire background of the screen light green

A

(body bgcolor = “lightGreen”)
but <> instead of ()