Binary Number System क्या है — आसान भाषा में समझें
Binary number system की पूरी जानकारी हिंदी में। Binary क्या है, कैसे काम करता है, और decimal में कैसे convert करें — examples के साथ।
Binary Number System क्या है?
🔧 अभी try करें: Number System Converter — binary, decimal, octal, hex instant convert करें step-by-step working के साथ।
Binary एक number system है जिसमें सिर्फ दो digits होते हैं — 0 और 1। इसे base-2 number system भी कहते हैं।
जब आप computer पर कुछ भी करते हैं — photo देखना, message भेजना, game खेलना — internally सब कुछ binary (0 और 1) में store होता है।
Binary में सिर्फ 0 और 1 क्यों?
Computer electronic circuits से बना होता है। ये circuits दो states में काम करते हैं:
| State | Binary Value | मतलब |
|---|---|---|
| ON (current चालू) | 1 | हाँ / True |
| OFF (current बंद) | 0 | नहीं / False |
इसीलिए computer की language binary है — क्योंकि hardware सिर्फ ON/OFF समझता है।
Decimal vs Binary — तुलना
हम daily life में decimal system (base-10) use करते हैं जिसमें 0 से 9 तक digits होते हैं।
| Decimal | Binary | कैसे? |
|---|---|---|
| 0 | 0 | — |
| 1 | 1 | — |
| 2 | 10 | 2 = 1×2¹ + 0×2⁰ |
| 3 | 11 | 3 = 1×2¹ + 1×2⁰ |
| 4 | 100 | 4 = 1×2² + 0×2¹ + 0×2⁰ |
| 5 | 101 | 5 = 1×2² + 0×2¹ + 1×2⁰ |
| 8 | 1000 | 8 = 1×2³ |
| 10 | 1010 | 10 = 8+2 |
| 15 | 1111 | 15 = 8+4+2+1 |
Binary को Decimal में Convert कैसे करें?
Method: हर bit को उसकी position value (2 की power) से multiply करो और सब add करो।
Example: 1101 को decimal में convert करें
Position: 3 2 1 0
Binary: 1 1 0 1
Value: 2³ 2² 2¹ 2⁰
= 8 + 4 + 0 + 1
= 13
Answer: 1101 (binary) = 13 (decimal)
Example: 10110 को decimal में convert करें
1×2⁴ + 0×2³ + 1×2² + 1×2¹ + 0×2⁰
= 16 + 0 + 4 + 2 + 0
= 22
Answer: 10110 (binary) = 22 (decimal)
Decimal को Binary में Convert कैसे करें?
Method: Number को 2 से divide करते जाओ, remainder note करो, नीचे से ऊपर पढ़ो।
Example: 13 को binary में convert करें
| Division | Quotient | Remainder |
|---|---|---|
| 13 ÷ 2 | 6 | 1 |
| 6 ÷ 2 | 3 | 0 |
| 3 ÷ 2 | 1 | 1 |
| 1 ÷ 2 | 0 | 1 |
नीचे से ऊपर पढ़ें: 1101
Answer: 13 (decimal) = 1101 (binary) ✓
Binary कहाँ-कहाँ Use होता है?
- Computers: सारा data binary में store होता है
- Networking: IP addresses binary में काम करते हैं
- Programming: Bitwise operations binary पर based हैं
- Digital Electronics: Logic gates 0/1 पर काम करते हैं
- File Storage: Images, videos, documents सब binary
Practice करें
Numverto के Number System Converter tool से binary conversions practice करें — हर step दिखाया जाता है।
और भी पढ़ें:
FAQ — अक्सर पूछे जाने वाले सवाल
Q: Binary में सबसे बड़ा single digit number कौन सा है? A: 1 — क्योंकि binary में सिर्फ 0 और 1 होते हैं।
Q: 8-bit binary number की maximum value क्या होती है? A: 11111111 = 255 (decimal)। Formula: 2⁸ - 1 = 255।
Q: Binary system किसने बनाया? A: Gottfried Wilhelm Leibniz ने 1703 में binary system को formally document किया था, हालांकि Indian mathematician Pingala ने इससे पहले similar concept use किया था।
Q: Computer binary क्यों use करता है, decimal क्यों नहीं? A: क्योंकि electronic circuits में ON/OFF (दो states) easily represent होती हैं। 10 different voltage levels maintain करना complicated और error-prone होता।
Free tools
Learn faster with Numverto
Free number system converters, binary tools, EMI calculators, and more, with step-by-step working.
Written by
Numverto Editorial Team
Founder of Numverto. MCA graduate, full-stack developer, and lifelong learner who built this platform so every student gets the explanation, not just the answer.
Related tools
More from Numverto Blog
ieee754
IEEE 754 Floating Point Explained Sign, Exponent & Mantissa
Master IEEE 754 floating point format sign, exponent, mantissa explained with real conversion examples for exams and coding interviews.
13 July 2026
IEEE 754 Standard
Why Does 0.1 + 0.2 Equal 0.30000000000000004? Floating-Point Errors Explained
Understand why computers produce floating-point precision errors, how the IEEE 754 standard stores decimal numbers in binary, why rounding occurs, and the best practices developers use to write accurate, reliable code.
1 July 2026
Discussion