ethanspencer8254 ethanspencer8254 18-07-2019 Computers and Technology contestada int alpha [5]; int j; alpha [0] = 2 for ( j = 1; j < 5; j++) alpha [j] = alpha [ j - 1] + 3; 3. What is the value ofalpha[4] after the code aboveexecutes? a. 5 c. 11 b. 8 d. 14