Introduction Networks Flashcards

1
Q

Client

A

A device that enables users to access the network

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

Server

A

A device that provides services to clients

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

Circuit

A

All cables, radio links and devices in between that enables the communication between clients and servers

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

Switch

A

device that connect multiple devices to form a LAN

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

Router (what does it do?)

A

connects different networks together.

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

IP address

A

unique address to identify each device in a network as the receiver of a message. . Each device needs an IP address for sending, receiving information and connecting to other routers

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

LAN

A

Local Area Network. Group of client/server(s) that share a local circuit (connected w/ switches and cables or radio waves). Usually limited to a single building, or a single floor of a building

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

BN

A

Backbone Network. Connects multiple LANs using routers. Usually don’t contain clients or servers but serve as the circuit the connects the different LANs. Quite high speed as they need to handle all network traffic. Ex. different floors of a buildings. operated and owned by the organisation that uses them like Monash

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

MAN

A

Metropolitan Area Network. Can span several km. Connects LANs and BNs over different locations. Usually leased from a third party telecommunications company.

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

WAN

A

Connects networks over large distances. Ex. connecting MSA and Monash Malaysia.

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

Transmission rate

A

Measure of the speed of a connection

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

How many Mb in a GB?

A

1 GB x 8b = 8 Gb
8Gb x 1000b = 8000Mb
Ans : 8000Mb

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

Latency

A

The length of time for 1 bit of data to travel from a sender to a reciever

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

Presentation logic

A

part of the application that provides the UI

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

Application logic/ business logic

A

Defines how the application behaves (what should happen when a button is clicked)

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

Data access logic

A

Defines how the application manages its data (updating text docs when a user makes changes)

17
Q

Data storage

A

Where the data is kept

18
Q

Application architectures

A

the different methods which work can be split up between the client and the server

19
Q

Server-based architectures

A

Presentation logic, application/business logic/ data access logic and data storage is performed by the server.

20
Q

Advantages of server-based architectures

A
  • Enables multiple user to access a single, main computer

- Any update is immediately available to all users

21
Q

Dis-advantage of server-based architectures

A
  • Upgrading the hardware means replacing a very expensive computer instead of inexpensive terminals
22
Q

Client-based architecture

A

Only places the data storage on the server whilst the presentation, application and data access logic are performed by the client

23
Q

Dis-advantages of client-based architecture

A

Incredibly difficult to make small changes to a file, as the entire file directory need to be downloaded over the network to your client. Puts enormous stress on the network, and even bigger problems when multiple user are attempting to gain access.

24
Q

Advantages of client-based architecture

A
  • Central file storage
  • Allows for multiple users to work on the same file at the same time
  • Central back-up machine
25
Q

Client-server architecture

A

Client only performs the presentation and application logic. Server implements the data access and storage.
(Think queries)

26
Q

Thin-client architecture

A

Client performs only presentation logic, and server implements application and data access logic and data storage

27
Q

Mult-tier architecture

A

Tasks are further split because of millions of users. Dedicated servers are set for application logic and dedicated ones for the data access and storage

28
Q

Peer-to-peer

A

Does not use servers at all. Connects multiple clients to each other
(Think file sharing apps)