asked 169k views
1 vote
The binary pattern 01000001 represents the number 65. Write a brief response explaining whether you believe this statement is always true. Explain your reasoning.

2 Answers

3 votes

Answer: This statement is not always true. It can represent another number when the byte size is different. If the byte size is 4, then it would represent two numbers, 64 and 1.

answered
User Peterulb
by
8.7k points
1 vote

Answer:

TRUE

Explanation:

The given binary expression is 01000001.

We convert to a decimal numeral to see if is actually 65.


01000001_2=0*2^7+1*2^6+0*2^5+0*2^4+0*2^3+0*2^2+0*2^1+1*2^0

Note that any number multiplied by zero is still 0.

This implies that:


01000001_2=0+1*64+0+0+0+0+0+1*1


01000001_2=64+1


01000001_2=65

Therefore the given binary pattern represents the number 65.

answered
User Ggdx
by
7.8k points
Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.