Arrays are an appropriate solution for a particular set of programming problems. However, it is also true that arrays can be used/abused to solve problems where the array is not logically or philosophically the best option.
Which of the following programming scenarios would be solved most appropriately with an array? Select all that apply.
? We need to store 15 Rectangle objects.
? We need to store our quiz scores so that we can then find the highest 3 scores, the lowest 3 scores, and the average score.
_(_())_(_()) We need to store information about a character in a game, such as location, speed, health, and name.
_(_())_(_()) We need to store information about a student, such as name, address, phone number, advisor, and GPA.