Answer:
A. Insertions and deletions require less work.
C. You can take advantage of random access typically
D. You can mix and match the types of the items on the list.
Explanation:
Standard array implementation is a process in which number of items are of same type and index is restricted at a certain range. This is preferable to dynamic allocated list because it requires less work in insertion and deletions. A dynamically allocated array does not use the fixed array size declaration.