Elements of an array are stored _______ in memory.
Skill/Topic: Array
A) Periodical
B) Sequentially
C) Parallely
D) None of the above
Explanation: Elements of an array are stored sequentially in memory. For example,First, create an array called letters and assign characters to it, as shown here: char letters[3];letters[0] = 'C';letters[1] = 'B';letters[2] = 'A';In this, each letter appears one after the other in memory. This is because these values are assigned to elements of an array, and each array element is placed sequentially in memory
-
Interview Candidate
- Dec 10th, 2005
- 3
- 11314
Showing Answers 1 - 3 of 3 Answers
Related Answered Questions
Related Open Questions
Elements of an array are stored _______ in memory.
A) Periodical
B) Sequentially
C) Parallely
D) None of the above
Explanation: Elements of an array are stored sequentially in memory. For example,First, create an array called letters and assign characters to it, as shown here: char letters[3];letters[0] = 'C';letters[1] = 'B';letters[2] = 'A';In this, each letter appears one after the other in memory. This is because these values are assigned to elements of an array, and each array element is placed sequentially in memory
Related Answered Questions
Related Open Questions