subtract binary numbers 10011 01010
Answers
Answer:
The correct answer to this question is
Explanation:
Given - binary numbers
To Find - Subtract binary numbers.
The answer is
A binary number is a number that has been stated using the base-2 or binary numeral system, which employs just two symbols, often "0" and "1." With a radix of 2, the base-2 number system is a positional notation.
#SPJ2
Answer:
The resultant of the subtraction of the binary number is 1001
Explanation:
Binary system
- The binary system is used to represent a number using only the numerals 0 and 1,
- A number that is written in base 2 or in the binary system is referred to as a binary number.
- It uses the symbols 1 (one) and 0(zero) to represent different numeric values.
- The positional notation in the binary system with 2 as a radix is known as the base-2 system.
- In computer architecture, binary numerals are frequently employed. Programming is done using a binary number system since the computer only understands the language of the two digits 0 and 1.
Operation performed in binary number:
- Addition
- Subtraction
- Multiplication
- Division
Subtraction of binary number:
A binary number itself can be obtained by subtracting two binary numbers.
The table below provides the binary number subtraction for two single-digit numbers.
Binary subtraction table
0 – 0 = 0
1 - 0 = 1
0 - 1 = 1 (Borrow one from the next higher order)
1 - 1 = 0
Given binary number is 10011 01010
1 0 0 1 1
0 1 0 1 0
______________
0 1 0 0 1
Therefore the subtraction value is 01001
Final answer:
The resultant of the subtraction of the binary number is 1001
#SPJ2