CMPE-240: Hexadecimal Homework 1 -- conversion and addition Instructions: 1. All signed value are 7 bits wide and unsigned values 8 bits wide. 2. Provide hexadecimal values in 0x... format (C language format) 3. Leave your answer (with reasoning where appropriate) underneath the question. This is where you show your work. 4. Submit your answers (i.e., in this text file) to MyCourses Dropbox: "Homework 1". 5. All questions are worth one point except 6 and 7 are worth two points for a total of 10 points. Questions: 1. Convert 73 to hexadecimal. Answer: Reasoning: 2. Convert 0xAC to decimal. (Hint: Convert it to binary first!) Answer: Reasoning: 3. What is the value of 11010110 in hexadecimal? Hexadecimal Answer: Reasoning: 4. What is the value of 11010110 in decimal if this is a negative number? Decimal Answer: Reasoning: 5. What is the value of 11010110 in decimal if this is a unsigned number? Decimal Answer: Reasoning: 6. Add 0x25 and 0x0F Hexadecimal Answer: Reasoning: 7. Add 0x70 and 0x5F (assume unsigned 8 bit numbers) Hexadecimal Answer: Reasoning: 8. If you do the addition as described in question 7 but assume these are 7 bit signed numbers and the resulting summation is a 7 bit signed number. Did this summation work correctly?