Activities
1 - Write your name in binary.
First figure out the binary for each character using the chart on Representing Characters.
Keep each byte (8 bits) separated by a space. For instance, "homework" would be:
01101000 01101111 01101101 01100101 01110111 01101111 01110010 01101011
How many bits is your name?
How many bytes is your name?
3 - What is -7 in 4-bit two's complement binary?
More Thinking: If 10 is 00001010 in an 8-bit system, what would -10 be in an 8-bit system using two's complement?
4 - How would you represent 170 in both binary and hexadecimal?
Hint
The table on the previous pageDecimal to Hexadecimal to Binary is missing some numbers, but you can look at the logic to work it out.
5 - Explain how to count upwards one-by-one in binary AND hexadecimal. Provide examples to support your answer.
Hint
Look back at question 4 and how you worked it out. Consider the logic of the table on the previous pageDecimal to Hexadecimal to Binary - how do you count upwards one by one?
Last updated