Computer Science, asked by deepika4579, 11 months ago



binary to decimal 349 digits

Answers

Answered by koushik1231
2

Answer:

101011101

Explanation:

use method division = quotient + remainder;

349 ÷ 2 = 174 + 1;

174 ÷ 2 = 87 + 0;

87 ÷ 2 = 43 + 1;

43 ÷ 2 = 21 + 1;

21 ÷ 2 = 10 + 1;

10 ÷ 2 = 5 + 0;

5 ÷ 2 = 2 + 1;

2 ÷ 2 = 1 + 0;

1 ÷ 2 = 0 + 1;

now reverse the order of remainder to get binary

Similar questions