Elements in an array are accessed _____________ *
randomly
sequentially
exponentially
logarithmically
Answers
Answered by
6
Elements in an array are accessed randomly_____________ *
randomly
sequentially
exponentially
logarithmically
Explanation:
Its is referred to as “random access” due to the fact you can access every element you want, whenever you want, independently on what other elements you
Answered by
1
Elements in an array are accessed Randomly.
Explanation :
- Elements in an array are accessed randomly using an 'index number', enclosed within rectangular braces with the aray name prefixed.
- The index number must be a numerical.
- Indexing starts from 0 and ends with n-1, where n is the size of the array.
- An array is said to be the container object that stores the series of fixed number of values ( based on the size ) of same datatype. However, In python, list and tuples are same a arrays but they can store values of any type without size limitation.
Learn more :
1. WAP TO STORE 10 NUMBERS IN A ARRAY A[] ABD 5 NUMBERS IN A ARRAY B[] AND THEN MERGE INTO ARRAY C []
https://brainly.in/question/16360859
2. What is an array and types of an array?
https://brainly.in/question/11890333
Similar questions