Computer Science, asked by mandeepHundal7713, 1 year ago

What is array explain the types of array in data structure?

Answers

Answered by itraa2000
0

Array is a fixed-size sequenced collection of variables belonging to the same data types. .

Basic Operations

There are some specific operation that can be performed or those that are supported by the array. These are:

Traversing: It prints all the array elements one after another.

Inserting: It adds an element at given index.

Deleting: It is used to delete an element at given index.

Searching: It searches for an element(s) using given index or by value.

Updating: It is used to update an element at given index.

Answered by Anonymous
0

An array is a collection of variables of the same type that are referenced by a common name.

Similar questions