Binary Flashcards

1
Q

What is the Denary system?

A

A number system with a base value of 10. It counts in multiples of 10.

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

What is a Binary system?

A

A number system with a base of 2. It counts in the multiples of 2.

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

Define Bit

A

The unit of memory that is used to store a binary digit.

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

1 kilobyte (1 kB) is equal to how many bytes?

A

1000 bytes

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

Define nibble.

A

The unit of memory that is used to store 4 binary digits.

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

1 terabyte (1 TB) is equal to how many gigabytes?

A

1000 GB

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

How many binary combinations are possible in a n-bit system?

A

2n binary combinations

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

What is an overflow error?

A

An error that occurs when the maximum storage capacity of a register is exceeded.

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

True or False: Binary equivalent of 8 shifted to left by one place is the binary equivalent of 4

A

False. The binary equivalent of 8 shifted to left by one place is the binary equivalent of 16

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

What is two’s complement?

A

A method to represent negative numbers. E.g.: Representing -5.
5 = 101
+5 = 0101. Each bit is inverted and 0101 becomes 1010.
1010 + 1=1011. -5=1011

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