Computer Science, asked by kkb1161, 2 months ago

09. Convert the following into binary number system :-
(a) (234)10 -> (?)2 step by step explanation​

Answers

Answered by pawantech
0

Answer:

Decimal 234 to Binary Conversion

The base-10 value of 23410 is equal to base-2 value of 111010102.

Answered by bhandalharpreet2
1

Answer:

(234)10 = (11101010)2

Explanation:

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

234/2 = 117, remainder is 0

117/2 = 58, remainder is 1

58/2 = 29, remainder is 0

29/2 = 14, remainder is 1

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 11101010.

So, 11101010 is the binary equivalent of decimal number 234

Similar questions