Assume that the following program is executed on a Little En…

Assume that the following program is executed on a Little Endian processor. Which option below best describes the output. #include int main(){    union a    {        short i;  //recall that short is 2 bytes.        char ch[2];    };    union a u;     u.ch[0]=121;    u.ch[1]=70;     printf(“%d\n”, u.i);     u.i = 103;     printf(“%d, %d\n”, u.ch[0], u.ch[1]);    return 0;}

Bonus Points (Added to the Bonus Points assignment in the cl…

Bonus Points (Added to the Bonus Points assignment in the class, not on this test) worth up to 50 points for answering this prompt in full sentences:  Choose your most memorable moment from one of the four live productions viewed in this class: Antigone, Everyman, or either Romeo and Juliet (must distinguish which one you are discussing).  In a detailed response, explain why it was the most memorable moment to you as an audience member. Use specific examples from the production. Include any of the categories from the critique sheet. Describe each production element in detail to support your response.  As you are in a lockdown browser, spelling and grammar will not be taken into consideration. However, full sentences are required.