Computer Science, asked by paddudon8, 4 months ago

(176) base 10 to binary, octal and hexadecimal.​

Answers

Answered by suhas0013055
0

Answer:

pls Mark it as brainliest

Answered by abhishekmishra2175
1

Answer:

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

176/2 = 88, remainder is 0

88/2 = 44, remainder is 0

44/2 = 22, remainder is 0

22/2 = 11, remainder is 0

11/2 = 5, remainder is 1

5/2 = 2, remainder is 1

2/2 = 1, remainder is 0

1/2 = 0, remainder is 1

Step 2: Read from the bottom (MSB) to top (LSB) as 10110000.

So, 10110000 is the binary equivalent of decimal number 176 (Answer).

Similar questions