Chapter 1: Digital Systems and Information Flashcards

1
Q

How much Volt does an outlet usually use?

A

110V

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

How much Volt does a computer usually use?

A

Up to 1.1V

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

How much Volt does an iPhone usually use?

A

Up to 0.8V

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

How many bits can a modern computer usually process at one time?

A

64 bit

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

What does the CPU on a basic level when an user clicks on an image to show it on a device?

A

The CPU converts the digital info to analog and the device displays the analog image

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

What is 11010 in decimal?

A

26

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

Why is photo editing so taxing on a computer’s CPU?

A

Because the CPU is making lots of calculations because as the user changes the image, he/she changes the digital information of many pixels

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

What is 110101.11 in decimal?

A

53.75

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

What is an analog signal?

A

A signal that is continuous as opposed to having only discrete values

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

What is a digital signal?

A

A signal that is not continuous across a range of values but that rather has only discrete values that it can take on

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

What is a bit?

A

A binary digit (0 or 1)

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

How do you convert a binary number to a decimal number?

A

By expanding the number into a power series with a base of 2

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

In digital systems, we refer to 2 to the power of 10 as what?

A

K (kilo)

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

In digital systems, we refer to 2 to the power of 20 as what?

A

M (mega)

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

In digital systems, we refer to 2 to the power of 30 as what?

A

G (giga)

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

In digital systems, we refer to 2 to the power of 40 as what?

A

T (tera)

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

Conventionally people use a kilobit to represent 1000 bits but in reality it is how many bits?

A

It is actually 2 to the power of 10, which is 1,024 bits

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

How do you convert a decimal number to a binary number?

A

By successively dividing by 2 and noting down the remainders. Then, you read the remainders from bottom to top to get the binary number.

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

The octal number system has which digits?

A

The digits 0 through 7

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

How do you convert an octal number to a decimal number?

A

By expanding the number into a power series with a base of 8

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

The hexadecimal number system has which digits?

A

Digits 0 to 9 and A, B, C, D, E, F

22
Q

How do you convert a hexadecimal number to decimal?

A

By expanding the number in a power series with a base of 16

23
Q

How do you convert a binary number to an octal number?

A

By separating the binary number into groups of three bits each, starting from the decimal point and proceeding to the left and right. Then, you convert each of those triplets into the corresponding number.

24
Q

How do you convert a binary number to a hexadecimal number?

A

By separating the binary number into groups of four bits each, starting from the decimal point and proceeding to the left and right. Then, you convert each of those groups of four into the corresponding number.

25
How do you convert an octal or hexadecimal number to a binary number?
By converting each octal (or hexadecimal) digit to a 3-bit (4-bit) binary equivalent and deleting extra 0s.
26
What's the sum of 01100 and 10001?
11101
27
What's the sum of 10110 and 10111?
101101
28
What's 10110 minus 10010?
00100
29
What's 10110 minus 10011?
00011
30
What is 1011 times 101?
110111
31
What number system did computers before the early 90s use?
Hexadecimal
32
How do you convert a decimal number to an octal number?
You successively divide by 8 and note down the remainders. Then, you read the remainders from bottom to top to obtain the octal number.
33
What does LSB stand for?
Least significant bit
34
What does MSB stand for?
Most significant bit
35
What's the sum of 59F and E46?
13E5
36
What's the product of 762 and 45 (both are octal numbers)?
43772
37
How do you convert decimal fractions to binary?
You successively multiply by 2 and note down the integer parts. Then, you read the integer parts from top to bottom to obtain the binary fraction.
38
How do you convert decimal fractions to octal?
You successively multiply by 8 and note down the integer parts. Then, you read the integer parts from top to bottom to obtain the binary fraction.
39
What does BCD stand for?
Binary-coded decimal
40
What is an advantage and a disadvantage of using BCDs in computers over regular binary numbers?
+: Conversion from decimal to BCD and back is faster -: BCDs need more bits than its equivalent binary number, which means higher manufacturing costs and more power
41
What is 185 in BCD?
0001 1000 0101
42
How do you convert a decimal number to BCD?
For every digit in the decimal number you just use a group of 4 bits to represent each of these digits
43
The standard binary code for the alphanumeric characters is called what?
American Standard Code for Information Interchange (ASCII)
44
Why do we use parity bits?
To detect errors in data communication and processing
45
What is a parity bit?
It is an extra bit that is added to a number to make the total number of 1s either even (even parity) or odd (odd parity)
46
What is even parity?
Adding an extra parity bit to a number to make the number of 1s even
47
What is odd parity?
Adding an extra parity bit to a number to make the number of 1s odd
48
In the case of even parity, how do we figure out that there was an error?
If we get a binary number with an odd number of 1s, then a bit (or an odd number of bits) contained an error
49
In the case of odd parity, how do we figure out that there was an error?
If we get a binary number with an even number of 1s, then a bit (or an odd number of bits) contained an error
50
What is Gray code?
It is a binary code, where the number of bit changes from one number to the next is always 1 (as opposed to a varied number in the regular binary code)
51
Mention the numbers 0 to 7 in a 3-bit Gray code
000 001 011 010 110 111 101 100