74.2k views
1 vote
Your app needs to store the following information. For each type of information, decide whether you would use an array or a variable to store it:

A. All the messages a user has sent
B. The highest score a user has ever reached on the app
C. A username and password to unlock the app

User Rhowell
by
5.0k points

1 Answer

3 votes

Answer:

All the messages a user sent: ARRAY

the highest score a user has: VARIABLE

a user name and password

VARIABLE

Step-by-step explanation:

Using an array to store series of messages is ideal and using variables to store username and password and score is the right thing to do.

User GrandOpener
by
5.8k points