If a is an array with n number of values always a[1] will give first value.
Select one:
1- True
2- False
Answers
Answered by
0
Answer:
Answer is false as the index of the array starts with 0.
a[0] will return the 1st value of the array.
More information:-
- Problems on Searching, Merging,Sorting etc are done using array
- Searching are of 2 types :- linear and binary search
- Sorting are of 3 types :- Selection,Bubble and Merge Sort
Similar questions