Name: Login: student__ Question 1: Why did TinyScheme print (#t) on the second line of your output? Question 2: What was the output of the car function? Question 3: What does gimp print now? (Give the entire output of your program. Do not include anything printed by gimp before your code ran and do not include the ts> prompt) Question 4: Can you take the car of a cdr? Can you take the cdr of a car? Question 5: How can you use car and cdr to retrieve the third item in a list? Give the TinyScheme code for retrieving the third item from (list 1 2 3 4 5 6 7). Question 6: What happens if you switch the order of the arguments to cons? That is, you cons a list with an item. What happens if you cons a list with a list? Question 7: What output does gimp produce when you run funcs.scm? Question 8: Suppose I wanted a function named "satisfactory" that takes a paremeter "num' and returns true (#t) if the number is both odd and greater than 5 and false otherwise. Give code for such a function AND three test cases. Question 9: Show how I could combine map and filter to create a function named "bizarre" that takes a list L and creates a new list containing all the odd elements of L doubled. For example, if L =( 1 2 9 20 11), bizarre should return (2 18 22). Question 10: How do we know that the recursion in our sum function will eventually end?