148k views
2 votes
How do you represent the decimal 50 integer in binary?

User TeaTwo
by
8.5k points

2 Answers

4 votes
The answer is 110010 because the decimal number 50 can be expressed as 32 + 16 + 2.
User Vivek Chaudhari
by
8.6k points
7 votes
50=32 + 16 + 2 =
1*2^(5)+1*2^(4)+0*2^(3)+0*2^(2) +1*2^(1)+0*2^(0)Binary integer is 110010.
User Shears
by
8.3k points