Home ›
SSC ›
SSC CGL ›
Maths ›
Number System ›
Base System Basics
16. Base System (Binary/Decimal) Basics
Base system ka basic concept: base-10 (decimal) vs base-2 (binary), place value, conversion (binary↔decimal), quick tricks, common errors, SSC CGL level examples & practice with answers.
1) Base / Radix kya hota hai?
Base (radix) = kitne digits allowed hain.
Decimal (base-10): digits 0–9
Binary (base-2): digits 0–1
General base-b me digits: 0 to (b−1)
2) Place value (general formula)
Agar number (ak ak-1 ...a1 a0 )b ho,
to value:
Σ ai × bi (i=0 to k)
Example: (345)10
3×102 + 4×101 + 5×100 = 300 + 40 + 5 = 345
Example: (1011)2
1×23 + 0×22 + 1×21 + 1×20 = 8 + 0 + 2 + 1 = 11
3) Binary → Decimal (direct method)
Binary digits ko powers of 2 ke weights se multiply karke add kar do.
Binary
Calculation
Decimal
(1101)2
1×8 + 1×4 + 0×2 + 1×1
13
(10010)2
1×16 + 0×8 + 0×4 + 1×2 + 0×1
18
(111111)2
32+16+8+4+2+1
63
4) Decimal → Binary (division by 2 method)
Number ko 2 se repeatedly divide karo. Jo remainders aayen, unko reverse order me likho.
Example: 13 to binary
Division
Quotient
Remainder
13 ÷ 2 6 1
6 ÷ 2 3 0
3 ÷ 2 1 1
1 ÷ 2 0 1
Remainders bottom-to-top: 1101 ⇒ (1101)2
5) Quick binary facts (SSC handy)
Binary number with n digits has max value = 2n − 1 (all ones)
(1000...0)2 (1 followed by k zeros) = 2k
Even binary ends with 0; odd binary ends with 1
Binary addition:
0+0=0
0+1=1
1+0=1
1+1=10 (carry 1)
6) Binary addition (mini example)
(1011)2 + (110)2 = ?
1011
+0110
=10001
⇒ (10001)2 = 17
7) Common traps
Base-2 me digit 2,3,... allowed nahi.
Conversion me place value powers right se start: 20 , 21 , ...
Leading zeros value change nahi karte: (00101)2 = (101)2
8) Practice (SSC CGL) + Answers
Convert (10101)2 to decimal.
Convert 25 to binary.
Convert (11100)2 to decimal.
Is (1001)2 odd or even?
Find decimal value of (1 00000)2 (i.e., 1 followed by 5 zeros).
Add: (111)2 + (1)2 .
Show Answers
(10101)2 = 16 + 4 + 1 = 21
25 = 16+8+1 ⇒ (11001)2
(11100)2 = 16 + 8 + 4 = 28
Ends with 1 ⇒ odd
1 followed by 5 zeros ⇒ 25 = 32
(111)2 + (1)2 = (1000)2