1. Limitations of arraysa) Arrays have a fixed dimension. Once the size of an array is decided it cannot be increased or decreased during execution.b) Array elements are always stored in contiguous memory locations. So it need contiguous locations otherwise memory will not be allocated to the arraysc) Operations like insertion of a new element [...]