Lecture 3: Networks and Web Pages Flashcards

1
Q

What is block styling?

A

When an element takes the entire width of the screen?

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

What kind of styling does <span> use?</span>

A

inline

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

What is the escape symbol used for less than (

A

&lt

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

What is the escape symbol for greater than (>)?

A

&gt

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

What is synchronous communication?

A

When there is a message sent, there must be feedback from the receiver in order to continue the conversation

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

What asynchronous communication?

A

Messages can be sent back and forth at any time

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

What does ISP stand for?

A

Internet Service Provider

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

What is a channel?

A

A communications medium

ex. a router or modem

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

What is a protocol?

A

Rules to be followed in the communication process

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

What is point to point communication?

A

One sender, one receiver

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

What is the backbone?

A

An enormous pipe that connects countries to internet

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

What is WAN?

A

Wide Area Network - countries, large regions

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

What is MAN?

A

Metropolitan Area Network - Cities

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

What is LAN?

A

Local Area Network - Office, home

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

What is the role of the client?

A

To request data

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

What is the role of the server?

A

To handle and serve requests

17
Q

Can a server also be a client?

A

Yes

18
Q

Everything on the internet has an _________.

A

Address

19
Q

What is the DNS?

A

The Domain Name System

20
Q

What does the DNS do?

A

They are servers which are solely in charge of resolving hostnames into IP addresses and vice versa. They are registries

21
Q

What does IP in IP address stand for?

A

Internet Protocol

22
Q

What is an IP packet?

A

A packet of information that holds pieces or chunks of data.

23
Q

What is TCP/IP?

A

Transmission Communication Protocol/Internet Protocol

24
Q

What does the TCP/IP do?

A

It dictates how different connections are to be established and how devices are to communicate with each other.

25
Q

What is ethernet?

A

When machines are physically connected via wires

26
Q

What are topologies?

A

The way that ethernet can be physically arranged

27
Q

What do routers do?

A

They connect networks together and plan the route to follow

28
Q

What do switches do?

A

They pass traffic along connected LANs

29
Q

What is caching?

A

When a DNS finds and returns an IP address, it stores that IP address in memory so it can serve the request faster next time

30
Q

What is redundancy?

A

When one server fails on a certain level another one can take over or handle the loads of queries

31
Q

What is the system in which our operating system organizes files?

A

A hierarchical tree

32
Q

What do tags do in HTML?

A

They are used to define the structure of a web page

33
Q

When using the img tag we also need to include an _______.

A

alt tag

34
Q

What are the 3 ways CSS can be applied ?

A
  1. Within the head document
  2. Inline
  3. Externally linked
35
Q

What format does CSS always follow?

A

element-selector {

property: value;

}

36
Q

The closer a style is to the element the stronger it is in the applying chain.

True or False?

A

True