Computer Science, asked by living36, 1 year ago

how to convert decimal number 56 to binary number

Answers

Answered by beast14
13
56)10 = (111000)2

Step by step solution

Step 1: Divide (56)10 successively by 2 until the quotient is 0:

56/2 = 28, remainder is 0
28/2 = 14, remainder is 0
14/2 = 7, remainder is 0
7/2 = 3, remainder is 1
3/2 = 1, remainder is 1
1/2 = 0, remainder is 1

Step 2: Read from the bottom (MSB) to top (LSB) as 111000. This is the binary equivalent of decimal number 56 (Answer).

 


Binary:111000Quaternary:320Octal:70Decimal:56Hexadecimal:38Base 32:10


I hope this will help you
Answered by hemanthsistla
3
Answer is 101110.By this flow chart
Attachments:
Similar questions