9.1 Communication Flashcards

1
Q

What is a symbol in relation to communication?

A

A particular pattern of bits represented by a signal.

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

Define baud rate?

A

the number of signal changes in the medium per second.

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

Define bit rate?

A

The numbers of bits that are transmitted over the medium per second. Usually measured in bits per second (Bps)

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

What is the formula containing bit rate, baud rate and number of bits per signal?

A

Bit rate = baud rate * number of bits per signal

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

Define bandwidth?

A

Bandwidth is expressed in hertz and relates to the range of frequencies that a communication medium is capable of transmitting.

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

Define latency?

A

Often measured in milliseconds, it is the difference in time between an action being initialised and its effect being noticed.

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

Define protocol?

A

Set of rules relating to communication between devices.

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

What are the two different ways that computers can transmit data between their different components?

A

Serially or parallel

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

How does serial data transmission work?

A

Data is sent on bit at a time over one communication line.

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

When is serial data transmission usually used?

A

Transmitting data over medium to long distances such as peripherals like mice and keyboards to your computer.

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

How does parallel data transmission work?

A

Uses numerous parallel communication lines in order to send multiple bits between components in a computer simultaneously. The more lines that are used the more data can be transferred simultaneously. Each of the communication lines that forms part of a parallel communication medium will have slightly different electrical properties, meaning transfer time will differ from line to line, causing the bits to be received at different times which is referred as a skew.

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

What is bad about parallel data transmission?

A

Over long distances and extreme cases skews can lead to bits from different pulses overlapping causing the corruption of data. They are also more expensive than serial wires.

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

When is serial transmission?

A

Used over short distances like between parts of the processor and within RAM.

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

What are the advantages of serial data transmission?

A

Doesn’t suffer from skew or crosstalk meaning it’s a more reliable communication method especially over long distances. they are also cheaper than parallel.

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

How does synchronous transmission work?

A

a clock signal, which is shared by both the send and the receiver, is used to time when signals are sent. the signals are sent at regular intervals are received in the same order that they are sent. Making it good for real-time systems.

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

When is synchronous transmission used?

A

Within buses of a computer’s fetch-execute cycle.

17
Q

How asynchronous transmission work?

A

Using start and stop bits. The start bit can be a 0 or 1 and the stop bit is the opposite of the start bit. The sender and receiver must the same baud rate and need only synchronise their clocks for the duration of data transmission.

18
Q

what does the start bit do?

A

A “start bit” in serial communication acts as a signal to the receiving device that a new data transmission is about to begin

19
Q

what does a stop bit do?

A

A Stop Bit is a part of the serial communication protocol used to signify the end of a data packet or byte. It ensures that the receiver has time to process each byte before receiving the next one.