Networking - General Flashcards

1
Q

What is a LAN

A

LAN stands for Local Area Network
LAN refers to a collection of devices and computers connected together in a physical location of small geographical area
Devices and computers are connected through wifi or Ethernet cables

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

What is a computer network?

A

Computer network is a group of computers or devices which uses the same set of communication protocol to share data over digital connections

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

What is WAN?

A

WAN stands for Wide Area Networks
WAN refers to a collection of LANs that are connected to each other over large geographical area.
These LANs are connected to each other through the internet

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

What are the three network types?

A

Intranet
Extranet
Internet

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

What is the Intranet and its purpose?

A

Intranet refers to a local private network which
- excludes outsiders access
- accessed only from an organisation premises OR
- through a virtual private network (VPN)

Purpose: Intranet is usually used at workplaces where a lot of data sensitive files are required to be shared securely

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

What is the Extranet and its purpose?

A

Extranet is a private network which
- extranet extends intranet to specific external users as it
- allows approved external users to access some parts of the organisation’s intranet
- without compromising the confidentiality of the internal network

Purpose: Extranet allows for secure sharing of data with external parties , thus is often used in B2B (business to business) communications

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

What is the Internet and its purpose?

A

Internet is a global system of interconnected computer networks which
- uses the internet protocol suites (TCP/IP) to communicate between networks and devices

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

What are the two different types of data transmission techniques used in networks?

A

Circuit Switch Networks
Packet Switch Networks

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

How does a circuit switch network work?

A
  1. A dedicated communication path is established between source and destination
  2. Data is sent out in continuous streams of packets
  3. Each packet will follow the same route to destination,
  4. and the returning data follows the same route back to the source
  5. Packets at destination and source are reconstructed in the order they arrive
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How does a packet switching network work?

A
  1. In packet switch networks, packets does not follow a dedicated path
  2. Data is split up into packets with its own ID number (ID number is to keep track of the order of packets)
  3. Packets also had headers to determine its destination and method of transmission
  4. Packets follow different routes to destination and back to the source
  5. Since packets may arrive out of order, packets are reconstructed based on the sequence of their ID number
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

State 3 advantages of Circuit Switch networks

A
  1. A: Lower chance of data corruption
    R: Information is sent in a continuous stream, thus there is no need to store and retransmit the data from intermediate nodes, hence the chances of data corruption is lowered
  2. A: Transmission of data requires lower overhead, thus more memory efficient…
    R: Since data packets arrives in order, there is no need to store and transmit additional information such as ID number as data can be reconstructed in the order packets arrive.
  3. A: Lower chance of data loss
    R: Since a dedicated path with guaranteed bandwidth is established for data transmission, transmission characteristics such as latency remains stable when the data is transfered.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

State 3 disadvantages of Circuit switched networks

A
  1. D: Large set up time due to call setup delay
    R: Both the sender and receiver must be ready before transmission can occur
  2. D: Circuit switched network can cause other transmission to be negatively affected
    R: Dedicated path causes the total bandwidth available to other transmissions to be lowered, thus less available resources for other transmissions, hence higher chances of congestion in the network
  3. D: Potential high disruption in data transmission
    R: (ONLY IF) the network is prone to disruptions, the whole transmission is interrupted and thus data will not be able to be sent at all
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

State 3 advantages of packet switch networks

A
  1. A: Less delay in setup time; data transfer can begin instantaneously
    R: Only sender is required to be ready before transmission begins
  2. A: More reliable data transmission
    R: If any segments of the network is distrusted, data packets can be routed around the disruption and still reach its destination
  3. A: Fully utilise the network
    R: Congested segments of network can be bypassed if other segments are available, thus maximise bandwidth to fully utilise the network
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

State 3 disadvantage of packet switch networks

A
  1. D: Data taransmission requires larger overhead; longer transmission as more data to transfer
    R: Additional data such as ID number and packet header is required to be transferred alongside the data itself
    R: Additional bits have to be added for error detection and correction
  2. D: Increased likelihood of data corruption
    R: Data packets travel from one free node to the next free node, where data is stored and retransmitted at every node, this increases the chances of data corruption
  3. D: Might be inefficient in applications which require real time communications (streaming, video calling etc)
    R: In packet switching networks, there is a higher chances of packet loss, which can lead to disruptions in applications which require data to be transferred and received continuously
    More time is taken when the lost packet is retransmitted
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Name the two network architecture models

A

Client - Server model
Peer to peer model

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

How does a client server model work?

A
  1. Client and server machine
  2. Servers does not initiate communication with clients directly, but only response to incoming requests by clients
  3. When client requires a service/data, client sends request to client server
  4. Server responses by fulfilling the request and returning the requested service/data back to the client
17
Q

How does a peer to peer model work?

A
  1. There is usually no centralised host servers, where data is divided among the computers
  2. All computers are considered their own host and client
  3. Each computer can initiate communication by sending request or responding to requests
18
Q

State 3 advantages of Client-Server model over peer to peer model

A
  1. A: Easier to manage data
    R: Data is centralised in the server, thus maintenance is only required in the server and not the clients
  2. A: Higher security
    R: Easier to implement and manage activity logging systems/firewalls/authentication on one server instead of many hosts in P2P model
  3. A: Easier to scale
    R: One server is easier to upgrade as compared to upgrading many host systems