Answer:
D - 14
Step-by-step explanation:
Each time the program executes an iteration of the for-loop, it works out the current element by adding 3 to the previous element.
alpha[0] = 2
+3
alpha[1] = 5
+3
alpha[2] = 8
+3
alpha[3] = 11
+3
alpha[4] = 14