Podcast Beta
Questions and Answers
Array is a container which can hold a fix number of items and these items should have one name and be of the same type.
True
Index: Each item stored in an array is called an element.
False
Insertion: Adds an element at the given index.
True
Deletion: remove an element at the given index.
Signup and view all the answers
append() : Removes the first item with the specified value.
Signup and view all the answers
sort(): Sorts the array.
Signup and view all the answers