what are the 9 protocols to remember
TCP, IP, UDP, HTTP, HTTPS, IMAP, POP, SMTP, FTP
what is a network
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
what is an example of the biggest network
the internet it is the biggest network in the world
what is a protocol
it allows devices to communicate
By ensuring all devices follow the same rules/ standards
so they interpret data/signals in the same way
what are standards
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
what is the most popular standard
HTML - its an early standard with the world wide web for displaying web pages in browsers
what do the TCP and IP do together
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
what does the UDP do
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
what does the HTTP/S do
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
what does SMTP do
transfers outgoing emails from email clients to servers
only sends them does not recieve them like POP and IMAP do
what does POP do
retrieves emails from a mail server and transfers them to your device
removing them from the server in the process
what does IMAP do
internet message access protocol
keeps emails on the mail server, allowing you to access your emails on multiple devices, while maintaining synchronocity between devices
what is the name of the four layers of the TCP/IP stack
if someone wanted to add the photo “UKstamps.jpg” how would that HTML code look like
(img src=”UKstamps.jpg”)
but with <> instead of the brackets
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 href=”http:/ukstampcollectorsguild.co.uk”)Find out More about UK stamps(/a)
but <> instead of the brackets
a site using styling set out as attributes in tags rather than a linked CSS file
how to make a body tag have the styling attribute lightGreen to make the entire background of the screen light green
(body bgcolor = “lightGreen”)
but <> instead of ()