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

The following code segment will be used for the next 5 quest…

The following code segment will be used for the next 5 questions . The code in the class Bar is complete, and main ()  contains only a partially completed main method (in other words there are no additional functions in the class Bar, but there could be more code in the main method) . NOTE: be aware that some of these questions may have more than one correct answer listed – you should mark ALL that apply in these cases: class Bar : public Foo {    private:        int integer1;        list list1;    public:        Bar()        {            integer1 = -1;        }        void enigma(int x)        {            list1.push_back(x);            integer1 = integer1 + 1;        }        int mystery()        {            integer1=integer1-1;            int val = list1.front();            list1.pop_front();            return val;        }        bool riddle()        {            return (integer1