What Is Binary Decimals?


Solution:


Binary number system 

A method of representing numbers that has 2 as its base and uses only the digits 0 and 1. Each successive digit represents a power of 2. For example, 10011 represents
$(1 \times 2^{4}) + (0 \times 2^{3}) + (0 \times 2^{2}) + (1 \times 2^{1}) + (1 \times 2^{0})$, or 16 + 0 + 0 + 2 + 1, or 19.

Decimal number system

A method of representing numbers that has 10 as its base and uses only the digits 0 through 9. Each successive digit represents a power of 10. For example, 32078 represents
$(3 \times 10^{4}) + (2 \times 10^{3}) + (0 \times 10^{2}) + (7 \times 10^{1}) + (8 \times 10^{0})$,

or 30000 + 2000 + 0 + 70 + 8, or 32078.

Binary numbers can be converted to decimal numbers and

Decimal numbers can be converted to binary numbers


Updated on: 10-Oct-2022

72 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements