Convert decimal number (59) to its binary equivalent
Answers
Answered by
2
Answer:
59 in Binary
add
59 in binary is 111011. Unlike the decimal number system where we use the digits 0 to 9 to represent a number, in a binary system, we use only 2 digits that are 0 and 1 (bits). We have used 6 bits to represent 59 in binary. In this article, we will show how to convert the decimal number 59 to binary.
59 in Binary: 59₁₀ = 111011₂
59 in Octal: 59₁₀ = 73₈
59 in Hexadecimal: 59₁₀ = 3B₁₆
111011₂ in Decimal: 59₁₀
59 in binary
Answered by
0
Answer:
111011
Explanation:
We can divide 59 by 2 and continue the division till we get 0.
Note down the remainder in each step.
(1) 59 mod 2 = 1- LSB (least significant bit)
(2) 29 mod 2=1
(3) 14 mod 2=0
(4) 7 mod 2=1
(5) 3 mod 2=1
(6) 1 mod 2=1 - MSB (Most significant bit)
Write the remainders from MSB to LSB.
Therefore, the decimal number 59 in binary can be represented as 111011.
Similar questions