Computer Science (16.2.23) Flashcards

1
Q

What is Data Transmission?

A

-> the process of transferring data from one point to another
-method egs:
-Copper Cable, Wireless (Radio Frequency), Infra red and Fibre optic

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

How about the speed of transmission?

A

The amount of data that can be transmitted at one time is referred to as its BANDWIDTH

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

What is Serial Data Transmission?

A

-Involves one signal being sent at a time over a single wire
-USB uses serial transmission (Universal SERIAL bus)
-Very high data transfer speeds can be achieved

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

What is Parallel Data Transmission?

A

-Involves a number of parallel wires that allow signals to be sent simultaneously
-It is best suited for data if it has to be sent over a very small distance
-it is the physical properties of each cable thats affects the arrival time of the data

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

What is Skew?

A

-It is a disadvantage of parallel transmission
-It is caused by each wire in a pt having different properties
-The greater the distance, the greater the issue that Skew can cause

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

What is Crosstalk?

A

-Another disadvantage of parallel transmission
-the wires are often very close to eachother and sometimes cause electrical interferences between them
-this can cause errors in the data meaning it will have to be re-sent

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

What is Simplex Transmission?

A

-Allows data to be sent in only one direction
-eg: sending data from the keyboard to the CPU

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

What is Half-Duplex Transmission?

A

-Allows data to travel both directions but it cannot occur simultaneously-> data can only travel one way at a time
-eg: Walkie Talkies only allow communication one at a time

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

What is Full Duplex Transmission?

A

-Allows data to travel in both directions simultaneously, it uses to cables for this
-eg: Internet cables that allow download or upload

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

How do Parity Bits work?

A

-before data is transmitted, both parties agree to use either odd or even parity
-the parity bit is set by the sending party and checked by the receiver
-if the n. of bits do not match the even of odd system it has an error
-the receiver notifies the sender and the parity check will ask for the data to be re-sent (could be bc of the order of the bits…)

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

What are Parity Blocks?

A

-Uses the same odd and even system to detect errors in data

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

What is Error Checking?

A

-Computers need methods to check for data transmission errors caused by an interference
-Parity checks, Check digits, Check Sums, Echo checks, ARQ (automatic repeat requests)

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

What does append() do?

A

Adds an element at the end of the list

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

What does clear() do?

A

Removes all the elements from the list

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

What does copy() do?

A

Returns a copy of the list

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

What does count() do?

A

Returns the number of elements with the specified value

17
Q

What does extend() do?

A

Add the elements of a list to the end of the current list

18
Q

What does index() do?

A

Returns the index of the first element with the specified value

19
Q

What does insert() do?

A

Adds an element at the specified position

20
Q

What does pop() do?

A

Removes the element at the specified position

21
Q

What does remove() do?

A

Removes the item with the specified value

22
Q

What does reverse() do?

A

Reverses the order of the list