Which is faster

Which is.faster between a dynamic array and a simple array

The dynamic array has performance similar to an array, with the addition of new operations to add and remove elements:

Getting or setting the value at a particular index (constant time)
Iterating over the elements in order (linear time, good cache performance)
Inserting or deleting an element in the middle of the array (linear time)
Inserting or deleting an element at the end of the array (constant amortized time)
although dynamic arrays are better for space