Choose either Option 1 or Option 2. Then, answer the provide…

Choose either Option 1 or Option 2. Then, answer the provided question.   [Option 1] Young, V. A. (2010). Should writers use they own English? Iowa Journal of Cultural Studies, 12(1), 110-118. How does Young connect issues around language ideology and standards to broader issues of prejudice and discrimination? Do you agree or disagree with the connections he makes? Respond in 1-2 paragraphs.    [Option 2] Hulst, C. (2020). Grammar, rhetoric, and style. Writing Spaces: Readings on Writing, 3, 86-99. Grammar usage and correctness are often the same, but many times they are not. Why do you think that the usage is different from the rule? Respond in 1-2 paragraphs. 

Consider the following recursive function: int enigma(int a…

Consider the following recursive function: int enigma(int a[], int start, int end) {   if (start >= end) {      return end;}   int index=enigma(a,start+1,end);   if (a[index] > a[start]){      return index;}  else {      return start; } } Given the above function enigma, what will be the output of the following snippet of code?    int a[] = {46, 95, 14};   int mystery = enigma(a,0,2);  cout