- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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