Computer Science, asked by ojaswakhare8890, 11 months ago

Elements stored in an array can be accessed only sequentially and not randomly true or false

Answers

Answered by daksh452222
8

Explanation:

elements can't beaccessed randomly but can be accessed only sequentially andaccessing element takes 0(n) time. Inarray, elements are stored in consecutive manner in memory. In linked list, elements can be stored at any available place as address of node is stored in previous node

Answered by orangesquirrel
27

The given statement is False.

Elements stored in an array can be accessed both sequentially and randomly.

* An array is a contiguous collection of elements that can be accessed randomly by the means of their index value.

* This is known as random access of the array elements using an index. This is also known as a dynamic array.

* For accessing array data in a sequential manner, one should use a static array method.

Similar questions