1. The name of a structure is called the . 2. An advantage of structures over ar
ID: 644087 • Letter: 1
Question
1. The name of a structure is called the .
2. An advantage of structures over arrays is that structures allow one to use
items of data types, whereas arrays do not.
3. One structure inside of another structure is an example of a .
4. The variables declared inside the structure declaration are called the
of the structure.
5. When initializing structure members, if one structure member is left
uninitialized, then all the structure members that follow must be
.
6. A user defined data type is often an .
7. Once an array of structures has been defined, you can access an array
element using its .
8. The allows the programmer to access structure members.
9. You may not initialize a structure member in the .
10. Like variables, structure members may be used as
arguments.
Explanation / Answer
1. The name of a structure is called the tag.
Answer: tag
2. An advantage of structures over arrays is that structures allow one to use
items of different data types, whereas arrays do not.
Answer: different
3. One structure inside of another structure is an example of a nested structure.
Answer: nested structure
4. The variables declared inside the structure declaration are called the members
of the structure.
Answer: members
5. When initializing structure members, if one structure member is left
uninitialized, then all the structure members that follow must be uninitialized.
Answer: uninitialized
6. A user defined data type is often an abstract data type.
Answer: abstract data type
7. Once an array of structures has been defined, you can access an array
element using its index location.
Answer: index location
8. The dot operator allows the programmer to access structure members.
Answer: dot operator.
9. You may not initialize a structure member in the definition.
Answer: definition
10. Like variables, structure members may be used as function arguments.
Answer: function
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.