1.3.3 Networks Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is a network?

A

Multiple computers connected together.

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

How is a physical bus topology set out? What are its advantages and disadvantages?

A

All devices are connected to a backbone cable.

Advantages => Cheap, no additional hardware required.
Disadvantages => Central point of failure, data collisions slow the network down, everyone on the network can see the data transmitted.

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

How is a physical star topology set out? What are its advantages and disadvantages?

A

All devices are connected to a server/switch.

Advantages => No data collisions means consistent performance, easy to add new devices.
Disadvantages => Central point of failure, expensive.

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

How is a physical mesh topology set out? What are its advantages and disadvantages?

A

In a full mesh, every node is connected to every other node.
In a partial mesh, most nodes are connected to most nodes.

Advantages => Performance and reliability increases as more nodes are added, no central server can improve speed.
Disadvantages => Expensive especially on a wired network, difficult to maintain.

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

What are the network protocols you need to know?

A

HTTP/HTTPS, POP3, TCP/IP, IMAP, FTP.

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

What is the HTTP/HTTPS protocol?

A

Hypertext Transfer Protocol (Secure) is used to render webpages.

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

What is POP3?

A

Post Office Protocol 3 retrieves emails from a server but immediately deletes them, meaning inboxes cannot be synced.

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

What is IMAP?

A

Internet Message Access Protocol retrieves emails from a server without immediately deleting them, so inboxes can be synced.

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

What is FTP

A

File Transfer Protocol transmits files over a network.

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

What is the TCP/IP stack?

A

Transmission Control Protocol / Internet Protocol contains 4 layers:

Application, Transport, Internet, Link

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

What does each layer do on the TCP/IP stack?

A

Application => Applies the correct protocol required.
Transport => Splits data into packets with a header, payload and trailer, and are given a sequence number and the port used.
Internet => Adds the sender’s and recipient’s IP addresses to the header of the packet.
Link => Adds the sender’s and recipients MAC addresses to the header of the packet.

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

What is a DNS and why is it used?

A

A Domain Name System translates domain names into IP addresses, as IP addresses are harder for humans to remember so we use domain names.

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

What does the header, payload, and trailer of a packet contain?

A

Header => Sender’s & recipient’s IP address, protocol in use, order of packets, time to live.
Payload => The raw data to be transmitted.
Trailer => The checksum.

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

What is circuit switching? What are its advantages and disadvantages?

A

A method of communication where a direct link is created between two devices. The link is maintained for the entire duration of the conversation. It requires both sides to send & receive data at the same speeds.

Advantages => Data is sent in order so doesn’t have to be reconstructed, no delay in the conversation.
Disadvantages => Bandwidth is wasted whilst data isn’t being transmitted, other uses can’t use sections of the network during transmission.

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

What happens during packet switching? What are its advantages and disadvantages?

A
  • Data is split into packets which have labels, including the address of the sender and receiver, and the sequence order.
  • The packets are each sent on the quickest route with the least traffic, meaning they could arrive in the wrong order.
  • When all of the packets have reached the recipient, they are reordered.

Advantages => Ensures data arrives intact, multiple routes can be used, packets can be transferred globally.
Disadvantages => It takes time to reconstruct the packets, data can’t be received until all packets have arrived.

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

What is a proxy server? What are its advantages?

A

Acts on behalf of the user when performing an internet search.

Advantages => IP address of the user is protected so they’re kept anonymous, has cache which means faster loading.

17
Q

What is a NIC?

A

A Network Interface Card is needed to connect a device to a network. It assigns a MAC address to each device.

18
Q

What does a switch do?

A

Used to direct the flow of data inside a network.

19
Q

What is a WAP?

A

A Wireless Access Point allows a device to connect to a wireless network.

20
Q

What is a router?

A

Used to connect multiple networks together, such as a home network with the Internet.

21
Q

What is a client-server network? What are its advantages and disadvantages?

A

Devices (clients) are connected to a server, which holds all of the information and resources. Clients can request to use this server.

Advantages => Security as data is stored in 1 location, central backup for whole server, data can be shared between clients.
Disadvantages => Expensive, central point of failure, harder to maintain.

22
Q

What is a peer-to-peer network? What are its advantages and disadvantages?

A

Devices are connected to each other so they can share files. Each device can both request and share files.#

Advantages => Cheap, easy to maintain, allows resource sharing, no reliance on server.
Disadvantages => Less secure, separate backups for each device, can’t trace origin of files.