58.1k views
3 votes
Saved Arrays are ________. Question 1 options: variable-length entities fixed-length entities data structures that contain up to 10 related data items used to draw a sequence of lines, or "rays" Question 2 (1 point) Which of the following statements about arrays are true? A. An array is a group of variables containing values that all have the same type. B. Elements are located by index. C. The length of an array c is determined by the expression c.length();. D. The zeroth element of array c is specified by c[0].

User Geroge
by
4.4k points

1 Answer

4 votes

Answer:

The answer to this question can be described as follows:

In question 1:

Arrays are "fixed-length entities".

In question 2:

The answer is "Option A, B, and D".

Step-by-step explanation:

Array is a collection of the elements of a similar type, in which we store integer, decimal, and character at a time. Array indexing always starts with 0. It's searching always starts with there index value, and the wrong option can be described as follows:

  • In Question 1, another option is not defined, that's why the given answer is correct.
  • In Question 2, except for option C, all were correct because to find length we also use the sizeof method, that's why it is wrong.

User Yissy
by
3.7k points