Data Flashcards
What is denary?
Denary is a number system that uses 10 symbols to represent each digit. The symbols range from 0-9.
What is binary?
Binary is a number system that uses two symbols for each digit. Only 0 and 1 are used in binary.
What is hexadecimal?
Hexadecimal is a system that uses 16 different symbols. It uses the digits 0-9 and then A-F.
What are the methods used to express negative numbers in binary?
Sign and magnitude along with two’s compliment.
What is sign and magnitude?
The most significant bit (MSB) of the binary number is a designated sign bit. If the number is positive then the MSB is set to 0. If the number is negative then the MSB is set to 1.
What is two’s compliment?
The place value of the MSB is made negative. This allows us to express negative numbers by subtracting the largest possible place value, and then adding the difference back on.
How does binary addition work?
0 + 0 = 0, 1 + 0 or 0 + 1 = 1. However, 1 + 1 = 0 as we can’t use the symbol 2 in binary, so we carry the 1 and put 0 in the current place.