data transmission

studied byStudied by 7 people
0.0(0)
Get a hint
Hint

what are data packets

1 / 134

flashcard set

Earn XP

Description and Tags

135 Terms

1

what are data packets

small units of data used for sending data over long distances

New cards
2

what is the typical size of a data packet

64KiB

New cards
3

why are data packets used

easier to control, can avoid busy transmission routes

New cards
4

What is the structure of a typical data packet?

header, payload, trailer.

New cards
5

What information does the packet header contain?

IP of sending device, IP of receiving device, sequence number, packet size

New cards
6

What is the payload in a data packet?

actual data being sent

New cards
7

What is the purpose of the packet trailer?

identify end of packet, includes error checker

New cards
8

what is a typical error checker in a packet

CRC

New cards
9

what does CRC stand for

cyclic redundancy check

New cards
10

why does a packet trailer need an error checking method

ensure data integrity

New cards
11

How does the CRC work in data packets?

Sending computer adds 1-bits and stores as hex value

Receiving computer recalculates 1-bits and compares values

If values match, no errors

New cards
12

What is packet switching?

process where data packets are sent from a sender via multiple possible routes

New cards
13

What is the main benefit of splitting data into packets?

each packet can take different routes to the destination which can avoid busy transmission routes

New cards
14

What is the main drawback of splitting data into packets?

data needs to be reassemble at destination.

New cards
15

How do packets find their route in packet switching?

Each packet follows the shortest available path

New cards
16

What is a key issue with packet switching regarding order?

can arrive in a different order from which they were sent.

New cards
17

List four benefits of packet switching.

can re-route packets when a line is busy

easy to expand package usage

high data transmission rate

no need to tie up a single communication line

New cards
18

List three drawbacks of packet switching.

packets can be lost

prone to real-time streaming errors

delay at destination when being reordered

New cards
19

What is the problem of lost packets in packet switching?

Packets can get lost by bouncing between routers and clogging the network.

New cards
20

How is the lost packet problem in packet switching overcome?

hopping

New cards
21

what is hopping

where a hop number in the packet header decreases with each number

New cards
22

What are the three key factors to consider in data transmission?

direction, method, data synching

New cards
23

What is simplex data transmission?

data sent one direction

New cards
24

What is an example of simplex data transmission?

computer to printer

New cards
25

What is half-duplex data transmission?

both directions, not at the same time

New cards
26

What is an example of half-duplex data transmission?

a walkie-talkie

New cards
27

What is full-duplex data transmission?

sent both ways simultaneously

New cards
28

What is an example of full-duplex data transmission?

broadband internet connection

New cards
29

What is serial data transmission?

one bit at a time over a single wire

New cards
30

6 characteristics of serial data transmission

one bit at a time

single channel

can be simplex, half-duplex, full duplex

best over long distance

slower data rate

arrives synched

New cards
31

What is an example of serial data transmission?

computer to a printer via a USB connection.

New cards
32

What is parallel data transmission?

Several bits of data simultaneously down several channels

New cards
33

4 characteristics of parallel data transmission

multiple bits simultaneously

multiple channels

New cards
34

When is parallel data transmission used?

High-speed network connections.

New cards
35

What modes can parallel data transmission operate in?

simplex, half-duplex, full-duplex

New cards
36

Over what distance does parallel data transmission work well?

works well over short distances.

New cards
37

What happens to parallel data transmission over longer distances?

data can become skewed, arriving unsynched

New cards
38

How does the length of the wire affect parallel data transmission?

longer the wire, the worse the data skew

New cards
39

How does the speed of parallel data transmission compare to serial data transmission?

parallel is faster than serial

New cards
40

Where is parallel data transmission commonly used within a computer?

internal circuits in a computer

New cards
41

What type of data transmission does USB use?

serial

New cards
42

What types of data transmission does USB support?

half-duplex, full-duplex

New cards
43

How many wires are in a USB cable

four

New cards
44

what are the colour wires in a USB cable

red, black, green, white

New cards
45

what is the red wire in a USB for

power

New cards
46

what is the black wire in a USB for

power

New cards
47

what is the green wire in a USB for

data transmission

New cards
48

what is the white wire in a USB for

data transmission

New cards
49

What happens when a device is plugged into a computer using a USB port?

computer detects device due to voltage change, driver software loaded, prompts user to download if necessary

New cards
50

What is USB-C

24-pin symmetrical connector

New cards
51

features of USB-C

fits in its port either way round

smaller and thinner than older USBs

offer 100 watt

carry 10GBps of data

support 4k video delivery

New cards
52

Is USB-C backward compatible, and with which versions?

it is backward compatible with USB 2.0 and 3.0

New cards
53

What is the significance of USB-C becoming more common?

become the new industry standard format.

New cards
54

Why is it important to check for errors during data transmission?

computers are unable to understand text if the words are corrupted

New cards
55

what does the built-in dictionary do in data transmission

tries to understand text that is corrupted with words it has stored

New cards
56

What are the causes of errors during data transmission?

interference

problems during packet switching

skewing of data

New cards
57

How does interference affect data transmission?

causes corruption or lose of data due to electrical disturbances

New cards
58

What issues can arise from problems during packet switching?

data loss or even the gain of incorrect data.

New cards
59

What is skewing of data

bits to arrive out of synch

New cards
60

how does skewed data affect data transmission

data corruption.

New cards
61

What are the methods used to check for errors in data transmission?

parity checks

checksum

echo check

New cards
62

What can happen if data corruption occurs during transmission?

data may become unintelligible leading to errors and miscommunication

New cards
63

What is parity checking?

based on the number of 1-bits in a byte of data

New cards
64

What are the two types of parity?

EVEN and ODD

New cards
65

what is even parity checking

the 1s in a byte add to an even number

New cards
66

what is odd parity checking

when the 1s in a byte add to an odd number

New cards
67

How is the parity bit set?

determining which bit is reserving the left-most bit for the parity bit.

New cards
68

What must be agreed upon before data is transferred using parity checks?

An agreement must be made between the sender and receiver on which parity is being used

New cards
69

What happens if even parity is used and the received byte has an odd number of 1-bits?

an error is flagged.

New cards
70

What is the limitation of parity checking?

If two bits changed value

New cards
71

what is the result of two bits changed in a parity

data may be impossible to locate

New cards
72

How does the parity block method work?

sending a block of data and totaling the number of 1-bits horizontally and vertically

New cards
73

What is a checksum?

sending an additional checksum value with the data block.

New cards
74

process of using a checksum to verify data integrity

calculate checksum from data block

transmit checksum and data block

recalculate checksum at receiving side

compare recalculation

if they match, no error

New cards
75

What happens if the checksums do not match?

request to resend data block is made

New cards
76

What is echo check?

data sent to another device is sent back again to the sender to check for errors

New cards
77

How does echo check work?

copy sent back to sender

sender compares with original data

if no differences, data was sent without errors

New cards
78

What is the limitation of echo check?

it isn’t known whether the error occurred when sending the data

New cards
79

What is a check digit?

final digit included in a code, calculated from all the other digits in the code

New cards
80

Where are check digits commonly used?

barcodes, ISBN, VIN

New cards
81

what does ISBN stand for

International Standard Book Numbers

New cards
82

what does VIN stand for

Vehicle Identification Numbers

New cards
83

What types of errors can check digits usually detect?

incorrect number entered, transposition errors, omitted or extra digits, phonetic errors

New cards
84

what error in a check digit would be 5327 when it is supposed to be 5307

incorrect digit entered

New cards
85

what error in a check digit would be 5037 when it is supposed to be 5307

transposition error

New cards
86

what error in a check digit would be 537 when it is supposed to be 5307

omitted/extra digit

New cards
87

what error in a check digit would be 13 when it is supposed to be 30

phonetic error

New cards
88

What are two common methods to generate a check digit?

ISBN 13

Modulo-11

New cards
89

What is the check digit in ISBN 13?

the thirteenth digit in the number.

New cards
90

How is the check digit generated in ISBN 13? (Step 1)

Add all the odd-numbered digits together.

New cards
91

How is the check digit generated in ISBN 13? (Step 2)

Add all the even-numbered digits together and multiply the result by 3.

New cards
92

How is the check digit generated in ISBN 13? (Step 3)

Add the results from steps 1 and 2 together and divide by 10.

New cards
93

How is the check digit generated in ISBN 13? (Step 4)

Take the remainder; if the value isn’t zero then subtract the remainder from 10 to find the check digit.

New cards
94

What are the methods to verify data has arrived unchanged?

parity

echo

ARQ

New cards
95

what does ARQ stand for

Automatic Repeat Request

New cards
96

What does ARQ use to check data?

positive, negative acknowledgements

timeout intervals

New cards
97

What is the purpose of a positive acknowledgement in ARQ?

data has been received correctly

New cards
98

What happens if an error is detected in ARQ

A negative acknowledgement is sent back

New cards
99

What is the role of a timeout in ARQ?

time interval allowed to elapse before an acknowledgement is received

New cards
100

what happens if the ARQ time interval is elapsed and nothing is received

the data is re-sent.

New cards

Explore top notes

note Note
studied byStudied by 5 people
... ago
5.0(1)
note Note
studied byStudied by 17 people
... ago
5.0(1)
note Note
studied byStudied by 142 people
... ago
4.2(5)
note Note
studied byStudied by 7 people
... ago
5.0(1)
note Note
studied byStudied by 10 people
... ago
5.0(1)
note Note
studied byStudied by 8 people
... ago
5.0(1)
note Note
studied byStudied by 11 people
... ago
5.0(1)
note Note
studied byStudied by 223 people
... ago
5.0(1)

Explore top flashcards

flashcards Flashcard (28)
studied byStudied by 1 person
... ago
5.0(1)
flashcards Flashcard (80)
studied byStudied by 24 people
... ago
5.0(1)
flashcards Flashcard (69)
studied byStudied by 37 people
... ago
5.0(1)
flashcards Flashcard (22)
studied byStudied by 8 people
... ago
5.0(1)
flashcards Flashcard (117)
studied byStudied by 6 people
... ago
5.0(1)
flashcards Flashcard (133)
studied byStudied by 9 people
... ago
5.0(1)
flashcards Flashcard (50)
studied byStudied by 2 people
... ago
5.0(1)
flashcards Flashcard (485)
studied byStudied by 42 people
... ago
5.0(1)
robot