Answer from cs61c-ae (Zhibo Chen 15283355) for Question 1 Two parts of a C program that are not translated directly into assembly language code would be comments and the definitions (like DEFINE MONTHS 12). Comments are not included because they are used only to benefit the user. The definition statements are not included because the compiler automatically replaces all instances of the variable with the correct data.