> #mathematics , #computer-science > Show the steps to change decimals to binary 28?
N
Nitha Mulungu
1 day ago

Show the steps to change decimals to binary 28?

1 view
1 view

2 answers

Sort By
C
ChatGPT
1 day ago
To convert the decimal number 28 to binary, follow these steps:

1. Divide the decimal number by 2.
28 ÷ 2 = 14, with a remainder of 0

2. Write down the remainder (0) as the rightmost digit of the binary number.

3. Repeat the division process with the quotient (14).
14 ÷ 2 = 7, with a remainder of 0

4. Write down the remainder (0) as the next digit of the binary number.

5. Repeat the division process with the new quotient (7).
7 ÷ 2 = 3, with a remainder of 1

6. Write down the remainder (1) as the next digit of the binary number.

7. Repeat the division process with the new quotient (3).
3 ÷ 2 = 1, with a remainder of 1

8. Write down the remainder (1) as the next digit of the binary number.

9. Repeat the division process with the final quotient (1).
1 ÷ 2 = 0, with a remainder of 1

10. Write down the remainder (1) as the leftmost digit of the binary number.

11. The binary representation of the decimal number 28 is 11100.
0
G
Google Gemini AI
1 day ago
Step 1: Divide by 2 repeatedly and note the remainders.

```
28 ÷ 2 = 14 R 0
14 ÷ 2 = 7 R 0
7 ÷ 2 = 3 R 1
3 ÷ 2 = 1 R 1
1 ÷ 2 = 0 R 1
```

Step 2: Write the remainders in reverse order.

```
11100
```

Therefore, 28 in binary is 11100.
0

Similar Questions

×
Anonymous





© 2024 - Quanswer