. What is an array in people code? What is maximum dimension of an array? Which function inserts values into an array? What is “pop”?

An array is a collection of data storage locations, each of which holds the same type of data.

 The maximum depth of a PeopleCode array is 15 dimensions.


 Push and unshift are the functions of the array used to add the elements into the array one from the end of the array and one from the beginning.

  Pop is a function of array used to select and delete an element from the end of the array.