Write the rules to perform the following conversions. (a) Hexadecimal number system to decimal number system. Multiply each digit with its positional value, keeping base as 16. (b) Octal number system to decimal number system. Multiply each digit with its positional value, keeping base as 8. (c) Binary number system to decimal number system. Multiply each digit with its positional value, keeping base as 2. (d) Decimal to binary number system. Keep dividing the number by 2 until the quotient becomes 0. During each division, note the remainders. Finally, arrange the remainders, going from last remainder to the first remainder.
Add 101 with 101. Answer: 1010
Subtract 11 from 101. Answer: 10
Multiply 111 with 001. Answer: 111
Divide 1101 with 111. Quotient: 1 Remainder: 110
Extra Questions.
A number system consists of a set of digits.
Decimal number system is the most commonly used number system.
The octal number system consists of 8 digits.
The decimal number system consists of 10 digits.
The hexadecimal number system consists of 16 digits.
The binary number system consists of 2 digits.
Binary addition is similar to addition of decimal numbers.
The base of the hexadecimal number system is 16.
The base of the decimal number system is 10.
The base of the octal number system is 8.
The base of the binary number system is 2.
The instructions given to a computer are converted into binary language.
The rightmost digit of a number is called LSD.
The leftmost digit of a number is called MSD.
Gottfried Leibniz invented the modern binary number system.
The positional value of each digit increases as we move from left to right. (True/False)
Binary subtraction is very similar to subtraction of decimal numbers. (True/False)
Binary multiplication is very similar to multiplication of decimal numbers. (True/False)
Binary addition generates a carryover when the sum of two binary digits exceeds 1. (True/False)
In binary subtraction, a borrow is taken from the next higher bit when subtracting a higher bit from a lower bit. (True/False)
Binary multiplication results in 1 only when both multiplicands are 1. (True/False)
Which number system do we use? Decimal Number System
List the digits supported in the binary number system. 0 and 1
List the digits supported in the octal number system. 0, 1, 2, 3, 4, 5, 6, 7
List the digits supported in the hexadecimal number system. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F
List the digits supported in the decimal number system. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Convert 2810 to binary number system. 111002
Convert 101102 to decimal number system. 2210
Convert 2538 into decimal number system. 17110
Convert FD216 into decimal number system. 405010
Add 11012 with 10112. 110002
Subtract 1102 from 110012. 100112
Multiply 111102 with 1012. 110101102
Divide 1011012 with 1102 and find the quotient and the remainder. Quotient = 1112 Remainder = 112