Share
Get Access to:
Get Access to:
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The binary representation of 127 is 01111111. To convert a decimal number to binary, we divide the number by 2 repeatedly, and record the remainder each time until we reach 0. Then, we read the remainders in reverse order to get the binary representation. Here's how to convert 127 to binary using thRead more
The binary representation of 127 is 01111111.
To convert a decimal number to binary, we divide the number by 2 repeatedly, and record the remainder each time until we reach 0. Then, we read the remainders in reverse order to get the binary representation.
Here’s how to convert 127 to binary using this method:
127 ÷ 2 = 63 remainder 1 63 ÷ 2 = 31 remainder 1 31 ÷ 2 = 15 remainder 1 15 ÷ 2 = 7 remainder 1 7 ÷ 2 = 3 remainder 1 3 ÷ 2 = 1 remainder 1 1 ÷ 2 = 0 remainder 1
Reading the remainders in reverse order gives us 01111111, which is the binary representation of 127.
See less