In the method in which you have expressed a numeric array named numbers, and two of its elements are numbers[1] and numbers[5] you know that numbers[1] are less than numbers[5] and that there are just three elements between those two elements. Correct answer: a and c.
Numeric arrays allow us to store numerous values of the same data type in a single variable without having to create different variables for each value. These values can then be accessed using an index which in the matter of numeric shows is always a number.
To learn more about numeric arrays, refer to :
https://brainly.com/question/10645946
#SPJ4
The complete question is:
Declared a numeric array named numbers, and two of its elements are numbers[1] and numbers[5]. you know that ____.
a. there are exactly four elements between those two elements
b. numbers[1] is smaller than numbers[5]
c. numbers[5] is the last element in the array
d. there are exactly three elements between those two elements