Decimal convert to binary
143
Answers
Answer:
10001111
Step-by-step explanation:
Answer:
143 in binary is 10001111. Unlike the decimal number system where we use the digits 0 to 9 to represent a number, in a binary system, we use only 2 digits that are 0 and 1 (bits). We have used 8 bits to represent 143 in binary.
- 143 in Binary: 143₁₀ = 10001111₂
- 143 in Octal: 143₁₀ = 217₈
- 143 in Hexadecimal: 143₁₀ = 8F₁₆
- 10001111₂ in Decimal: 143₁₀
Step-by-step explanation:
Step 1: Divide 143 by 2. Use the integer quotient obtained in this step as the dividend for the next step. Repeat the process until the quotient becomes 0.
Dividend Remainder
143/2 = 71 1
71/2 = 35 1
35/2 = 17 1
17/2 = 8 1
8/2 = 4 0
4/2 = 2 0
2/2 = 1 0
1/2 = 0 1
Step 2: Write the remainder from bottom to top i.e. in the reverse chronological order. This will give the binary equivalent of 143.
Therefore, the binary equivalent of decimal number 143 is 10001111.