Given the following code: What are the values of each element in intArr after this code has
executed?
A.
15, 30, 75, 60, 90
B.
15, 30, 90, 60, 90
C.
15, 90, 45, 90, 75
D.
15, 60, 45, 90, 75
E.
15, 4, 45, 60, 90
Given the following code: What are the values of each element in intArr after this code has
executed?
A.
15, 30, 75, 60, 90
B.
15, 30, 90, 60, 90
C.
15, 90, 45, 90, 75
D.
15, 60, 45, 90, 75
E.
15, 4, 45, 60, 90
a
Option A
Definitely A.
Answer: A
output:
intArr = [15, 30, 75, 60, 90]
a