4.9 fundamentals of communication and networking - cs

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/124

flashcard set

Earn XP

Description and Tags

need to double check if this is complete

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

125 Terms

1
New cards

what are parallel cables?

ribbons of several smaller cables used primarily for connecting internal components

2
New cards

how does serial transmission work?

data bits are sent in a sequence

3
New cards

what are the advantages of serial transmission?

reliable over long distances at high frequencies

4
New cards

not affected by skew

5
New cards

less wires

so minimises crosstalk

6
New cards

serial interfaces have fewer pins

so cheaper and easier to produce

7
New cards

how does parallel transmission work?

several bits are sent simultaneously along separate lines or channels

8
New cards

what are the disadvantages of parallel transmission?

only reliable over short distances (roughly 2m) and with lower bit rates than serial transmission

9
New cards

what is parallel transmission usually used for?

mainly used inside a computer and in some early peripherals - known as buses

10
New cards

do USBs use serial or parallel transmission?

serial

11
New cards

what is crosstalk?

electromagnetic interference between two adjacent channels or parallel wires

12
New cards

how does crosstalk worsen?

it gets more pronounced as the frequency of transmission increases

13
New cards

what is the consequence of crosstalk?

corrupted data may be transmitted

14
New cards

what is skew?

when bits transmitted across parallel links travel at different speeds

15
New cards

what is the consequence of skew?

data can fall out of sync with the clock signal and therefore be read incorrectly

16
New cards

what is synchronous transmission?

when all data transfers are timed to coincide with an internal clock pulse

17
New cards

the data is sent as one long stream or block of data with no gaps in the transmission

18
New cards

receiver counts the bits and reconstructs bytes

19
New cards

what kind of transmission is synchronous transmission used with?

parallel transmission

20
New cards

what is asynchronous transmission?

sends bytes separately as soon as they are available instead of waiting for a clock signal

21
New cards

each byte is preceded by a start bit and ends with a stop bit (short time between each set of bits)

22
New cards

what is asynchronous transmission best used for?

cheap and effective form of serial transmission but slow - suited to low-speed connections like keyboard + mouse

23
New cards

what is a parity bit/check bit?

the 8th bit

24
New cards

what is latency?

the time delay between the moment the first byte or packet of a communication starts and when it is received at its destination

25
New cards

what is protocol?

the set of rules relating to communication between devices

26
New cards

what are the things the protocol defines? (5)

standards for physical connections and cabling

27
New cards

the rate of transmission

28
New cards

data format

29
New cards

whether transmission is synchronous or asynchronous

30
New cards

error checking procedures

31
New cards

define bit rate

the number of bits transmitted per second

32
New cards

define baud rate

the rate at which signals on a wire may change

33
New cards

what is baud rate usually measured in?

Mbit/s (megabits per second)

34
New cards

what does the start bit in asynchronous transmission do?

it's used to signal the arrival of data and to synchronise the transmitter and receiver temporarily

35
New cards

what is bit rate measured in?

bps (bits per second)

36
New cards

what is a baseband system?

a system that uses a single data channel system in which the whole bandwith of the transmission medium is dedicated to one data channel at a time

37
New cards

what is the relation between bit rate and baud rate in baseband?

bit rate is the same as baud rate in baseband

38
New cards

what is broadband?

a multiple data channel system in which the bandwidth of the transmission medium carries several data streams at the same time

39
New cards

what is the equation linking bit rate and baud rate?

bit rate = baud rate x number of bits per signal

40
New cards

what is bandwith?

a measure of the maximum capacity of a communication channel

41
New cards

what is bandwidth usually measured in?

bps

42
New cards

what is the relationship between bit rate and bandwith?

bit rate is directly proportional to bandwith

43
New cards

how does the bus topology work?

all nodes are connected to a single backbone cable

44
New cards

the end of the backbone is connected to either a terminator or computer which stop signals bouncing back

45
New cards

each node is passive

46
New cards

data is sent in one direction at a time only

47
New cards

only one computer can transmit successfully at any one time

48
New cards

what are the advantages of the bus topology?

inexpensive

49
New cards

devices can easily be added

50
New cards

good for small networks

51
New cards

what are the disadvantages of the bus topology?

main cable is a point of failure

52
New cards

limited cable length

53
New cards

performance degrades with heavy use

owing to data 'collisions'

54
New cards

poor security

55
New cards

in terms of a bus topology

what is a data collision?

56
New cards

how does a star topology work?

each device on the network is connected to a central communication device

57
New cards

what is the difference between a hub and a switch?

a hub broadcasts a communication to every computer on the LAN

58
New cards

what are the advantages of a star topology?

easy to isolate problems

59
New cards

good performance

60
New cards

if a switch is used

more secure because data is only sent to the recipient

61
New cards

what are the disadvantages of a star topology?

can be expensive to set up due to length of cable required

62
New cards

central device is a point of failure

63
New cards

what is a MAC address?

a unique address hardcoded into each networked device's NIC (Network Interface Card) in manufacture

64
New cards

how does a switch use MAC addresses?

it holds all the MAC addresses of the devices connected to it and uses these to direct packets of data to the correct device

65
New cards

what is physical topology?

how devices in a network are physically connected

66
New cards

what is logical topology?

how devices in a network communicate across physical topologies

67
New cards

how can a network wired in star topology behave logically as a bus network?

by using a bus protocol and appropriate physical switching

68
New cards

what is a server?

a computer that shares resources with or provides services to any authorised client

69
New cards

what is a client?

a program that typically runs on a device used by an end-user

70
New cards

what examples of the kinds of servers are there? (5)

file servers

71
New cards

how does a client-server network work?

most computers are nominated as clients and one or more as servers. the clients request services from the servers

72
New cards

how does a peer-to-peer network work?

there are no central servers

73
New cards

every computer can be configured to share its resources/hardware

74
New cards

peers communicate directly with each other and all have equal status

75
New cards

how do client-server and peer-to-peer networks compare in terms of SETUP COST?

c-s: servers (high performance computers) need to be set up and configured

76
New cards

p2p: no additional devices are needed

77
New cards

how do client-server and peer-to-peer networks compare in terms of PHYSICAL SECURITY?

c-s: servers can be located in secure rooms

78
New cards

p2p: workstations may be at multiple different locations so hard to oversee

79
New cards

how do client-server and peer-to-peer networks compare in terms of BACKUPS?

c-s: backups can be done centrally on the server

80
New cards

p2p: individual users responsible for backing up their own data

81
New cards

how do client-server and peer-to-peer networks compare in terms of POINTS OF FAILURE?

c-s: if server fails

82
New cards

p2p: if one device fails

most other users will be able to carry on w/ their work

83
New cards

what are the advantages of cloud storage?

can be accessed anywhere with internet connection

84
New cards

software and data does not occupy space on user's hard drive

85
New cards

multiple people can access the same data

86
New cards

central backup

87
New cards

what are the disadvantages of cloud storage?

need internet access

88
New cards

if there's an organisational security breach

a user's data is at risk

89
New cards

what is Wi-Fi?

wireless networking technology providing high-speed internet and network connections

90
New cards

what are the components needed to connect to a wireless network?

ISP (Internet Service Provider)

91
New cards

what is a NIC?

Network Interface Controller/Card - used to connect a device to a network

92
New cards

what is a WAP?

Wireless Access Point - a switch that allows devices to connect wirelessly

93
New cards

what is a modem used for?

it modulates the electrical signal

94
New cards

what is an SSID?

Service Set Identifier

95
New cards

string of alphanumeric characters specified during the setup of wireless devices

96
New cards

what can a SSID do?

can be set manually or automatically

97
New cards

can be hidden to make it harder to connect

98
New cards

can be set to broadcast to wireless devices in range of an access point

99
New cards

what is CSMA/CA?

Carrier Sense Multiple Access with Collision Avoidance - a protocol used in wireless networking that makes sure network collisions are avoided

100
New cards

what are network collisions?

when two devices attempt to communicate at the same time