Binary Flashcards
What is the Denary system?
A number system with a base value of 10. It counts in multiples of 10.
What is a Binary system?
A number system with a base of 2. It counts in the multiples of 2.
Define Bit
The unit of memory that is used to store a binary digit.
1 kilobyte (1 kB) is equal to how many bytes?
1000 bytes
Define nibble.
The unit of memory that is used to store 4 binary digits.
1 terabyte (1 TB) is equal to how many gigabytes?
1000 GB
How many binary combinations are possible in a n-bit system?
2n binary combinations
What is an overflow error?
An error that occurs when the maximum storage capacity of a register is exceeded.
True or False: Binary equivalent of 8 shifted to left by one place is the binary equivalent of 4
False. The binary equivalent of 8 shifted to left by one place is the binary equivalent of 16
What is two’s complement?
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