Chapter 21: Building Your Own Structure (Structures)
TRUE/FALSE
1. Pascal case means capitalizing the first letter in the name and the first letter of each subsequent word
in the name.
2. Between the Structure and End Structure clauses, you define the members included in the structure.
3. Most programmers use the Structure statement to create data types that contain procedures.
4. The variables defined in a structure are referred to as member variables.
5. The Structure statement itself reserves locations in the computer’s internal memory.
6. The Structure statement provides the pattern for a data type that can be used to reserve a memory
location.
7. The items in a structure must have the same data type.
8. In a structure, you can group together items having the String data type along with items having a
numeric data type.
9. In most applications, you enter the Structure statement in the form’s Declarations section.
10. The member variables in a structure variable cannot be used just like any other variables.
11. You can use a structure to group together related items.
12. When you pass a structure variable to a procedure, all of its members are passed automatically.