Due Tuesday 8/27/2013 by 11:59pm. Note: DO NOT EMAIL THIS TO THE INSTRUCTORS. FOLLOW THE INSTRUCTIONS BELOW TO TURN IT IN BY PLACING IT IN YOUR DIRECTORY ON THE CS SERVER. Name: Collaborators: (Note - list anyone who helped you or who you discussed the homework with, including people that aren't in our class. For example, if you ask a relative or friend for help, list their name.) 1. Copy this file from ~jkinne/public_html/cs151-f2013/code/hw2.txt into your handin directory. 2. Practice converting between different types of data. 2a. Convert 35 to binary, and SHOW YOUR WORK. Answer: 2b. Convert 11111111 (that's 8 1's) to decimal, and SHOW YOUR WORK. Answer: 2c. Look up the ASCII code for 'a'. It is some decimal number. Convert that number to binary. Answer: 2d. Take the binary value 01100011, convert it to decimal, and look up that value in the ASCII code. What letter is it? Answer: 2e. Convert the word cat to binary. That means, look up each letter in the ASCII code, convert to binary, and list it out. Each letter will be 8 bits, so you should have 24 bits total. 3. Practice with hexadecimal. 3a. Convert 11000011 binary to hexadecimal. Answer: 3b. Convert F1 hexadecimal to binary. SHOW YOUR WORK. 3c. Convert 42 decimal to hexadecimal. SHOW YOUR WORK.