Section 5 Network And Web Technologies Flashcards

1
Q

The importance of protocols?

A

protocols: set of rules defining common methods of data communication standardised across all devices

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

What is TCPIP

A

A protocol stack

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

TCPIP layers

A

application
transport
internet
link

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

Application layer?

A

uses HTTP, POP3, FTP - protocols relating to the application being used to transmit data across a network

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

transport layer?

A

uses TCP (UDP is slower and lossy) to establish an end to end connection
data split into packets and labelled with packet no., total no. of packets and the port number through which it should route
this layer requests retransmission of missing packets
reciept of packets is acknowledged

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

internet layer?

A

adds source and destination ip addresses
routers operate on this layer
use this ip address to forward the packet elsewhere

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

what does a socket specify?

A

the device which the packet must be sent to and the application being used on that device

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

link layer?

A

physical connection between network nodes and adds the MAC (media access control) addresses identifying the NICS (network interface cards) of the source and destination computers so the right hardware can be located

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

HTML

A

Hypertext markup language

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

CSS

A

Cascade style sheets

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

use of HTML

A

script that web pages are written in
describe content and structure of a web page
so a browser can interpret and render the page for the viewer

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

use of CSS

A

describes the style and layout of a page
includes changing colours and fonts

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

what is this a pair of?

<html> and </html>

A

tags

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

<html> definition
</html>

A

all code enclosed is interpreted as HTML

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

<body> definition
</body>

A

defines the content in the main browser content area

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

<head> definition
</head>

A

defines the browser tab/window heading area

17
Q

<title> definition
</title>

A

defines the text that appears within the tab or window heading area

18
Q

<h1>, <h2> etc definitions
</h2></h1>

A

heading styles in decreasing sizes

19
Q

<p> definition
</p>

A

paragraph separated with a line space above and below

20
Q

<img></img> definition and parameter

A

self closing image tag with parameters

<img src = location, height=x, width=y>

21
Q

<a> definition and parameter</a>

A

anchor tag defining a hyperlink with a location parameter

<a> Link text </a>

22
Q

<ol> definition
</ol>

A

ordered list

23
Q

<ul> definition
</ul>

A

unordered list (bullet points)

24
Q

<li> definition
</li>

A

defines an individual list item within either numbered or bulleted lists

25
Q

<div> definition
</div>

A

divides page into seperate areas which can be styled differently using CSS