197k views
0 votes
An advantage of structures over arrays is that structures allow one to use items of data types, whereas arrays do not.

A. True
B. False

User Danott
by
7.8k points

1 Answer

4 votes

Final answer:

The statement is False. Arrays and structures both have different properties in terms of the data types they can store.

Step-by-step explanation:

Arrays and structures are both data structures used in programming languages, but they have different properties. Arrays are used to store multiple values of the same data type, while structures allow you to store different data types together.

For example, consider a program that needs to store information about a student, such as their name, age, and grade. In an array, you would need to create separate arrays for each piece of information. However, with a structure, you can define a single structure that includes all the necessary information.

User Reuns
by
7.6k points