Number Systems Flashcards

1
Q

how do digital systems differ from analogue quantities

A

digital systems can process, store and transmit data more efficiently
- they also can only assign discrete values to each point

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

What are the 2 states of digital electronics (voltage/logic levels)

A

HIGH or LOW

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

What discrete values are assigned in digital systems

A

1 binary - HIGH
0 binary - LOW

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

what is a digital waveform

A

a series of pulses
- change between LOW and HIGH levels

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

What is a positive-going pulse

A

a digital waveform that goes from a normally low logic level to a high logic level, before returning to a low logic level

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

what is a negative-going pulse

A

a digital waveform that goes from a normally high logic level to a low logic level, before returning to a high logic level

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

what is a duty cycle

A

the ratio of pulse width (tw) to wave period (T)

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

how is duty cycle calculated

A

(tw/T) x 100%

tw - pulse width
T - period (time for full cycle)

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

what is high duty cycle

A

a waveform that is high most of the time

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

what is a low duty cycle

A

a waveform that is low most of the time / high for a short amount of time

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

what are periodic pulse waveforms

A

pulses that repeat in a fixed interval (period)

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

what is frequency

A

the rate the periods of a wave repeats

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

how is frequency calculated

A

1/ T

T - period

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

what is a clock

A

a timing reference signal that synchronises basic timing waveforms with all waveforms
- interval between pulses = time for one bit of data

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

what is a timing diagram

A

a graph of digital waveforms showing the actual time relationship of 2 or more waveforms & how each waveform changes in relation to the other

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

how many bits are in a byte

17
Q

how many bytes are in a word

18
Q

how many bytes are in a double word

19
Q

how can data be transmitted

A

serial transfer or parallel transfer

20
Q

what is serial transfer/transmission

A

serial transfer of 8 bits of binary data, starting at interval t0-t1
- 1 bit at a time consecutively in intervals

21
Q

what is parallel transfer/transmission

A

parallel transfer of 8 bits of binary data, starting at t0
- faster than series transmission
- delivers multiple bits as a single unit

22
Q

how do binary systems work for digital systems

A

uses bases of 2 (2^n)

23
Q

how to convert decimal to binary

A

keep dividing the decimal number by 2 and write down the remainders

24
Q

how to convert decimal fraction to binary

A

repeatedly multiply fractional (< 0) results by 2 and carry the binary number at the front

25
rules for binary addition
0+0 = 0 (carry 0) 0+1 = 1 (carry 0) 1+0 = 1 (carry 0) 1 + 1= 0 (carry 1) if 1 is carried: 1+0+0 = 01 sum:1 carry: 0 1+0+1 = 10. sum: 0 carry: 1 1+1+0 = 10. sum: 0 carry: 1 1+1 + 1= 11 sum: 1 carry: 1
26
binary rules for subtraction
0-0 = 0 0-1 = 1 1-0 = 1 1-1 = 0
27
what is the 1’s complement of a binary numbers
inverse of the digits 1 becomes 0 0 becomes 1
28
what are the 2’s complement of a binary number
adding 1 to the binary number
29
what is a signed binary number
they. indicates whether a number is positive or negative, and the magnitude is the value of the number Positive numbers in 2’s complement form are stored in true form (with a 0 for the sign bit) negative numbers are stored in complement form (with a 1 for the sign bit).
30
what are Hexadecimal numbers
sixteen characters to represent numbers: the numbers 0 through 9 and the alphabetic characters A through F