CNIT 315 Exam 2 (2026/2027) | Latest
Questions | 100% Verified Answers | A+
• Data field -✓✓data items that are entities themselves (ex. Name: __________)
• Record -✓✓all data fields form a single field called this
• Structure -✓✓In C a record is referred to as this
• Structure's form -✓✓consists of the symbolic names, data types, and
arrangement of individual data fields in the record
• Structure's contents -✓✓consist of the actual data stored in the symbolic
names
• Single Structure layout -✓✓struct
{
int month;
int day;
int year;
} birth;
• Single Structure definition -✓✓Reserves storage for the individual data items
listed in the structure
, • Members of the structure -✓✓data items declared in the struct (ex. int month;)
• Populating the structure -✓✓Assigning actual data values to the data items of a
structure
• Rigid -✓✓Spacing of a structure is not ________
• Structure type name -✓✓defined by user and first letter is capital (ex. struct
Date)
• Arrays -✓✓Initialization of structures follows the same rules as for the
initialization of ___________
• True -✓✓Structure members can be of any data type
• struct
{
char name[20];
struct Date birth;
} person;
Valid: person.name[4]; -✓✓Individual members can be arrays and structures,
advantage that same structure type can be used in a list many times
• NUMRECS 5 -✓✓Used to define an array of data
Questions | 100% Verified Answers | A+
• Data field -✓✓data items that are entities themselves (ex. Name: __________)
• Record -✓✓all data fields form a single field called this
• Structure -✓✓In C a record is referred to as this
• Structure's form -✓✓consists of the symbolic names, data types, and
arrangement of individual data fields in the record
• Structure's contents -✓✓consist of the actual data stored in the symbolic
names
• Single Structure layout -✓✓struct
{
int month;
int day;
int year;
} birth;
• Single Structure definition -✓✓Reserves storage for the individual data items
listed in the structure
, • Members of the structure -✓✓data items declared in the struct (ex. int month;)
• Populating the structure -✓✓Assigning actual data values to the data items of a
structure
• Rigid -✓✓Spacing of a structure is not ________
• Structure type name -✓✓defined by user and first letter is capital (ex. struct
Date)
• Arrays -✓✓Initialization of structures follows the same rules as for the
initialization of ___________
• True -✓✓Structure members can be of any data type
• struct
{
char name[20];
struct Date birth;
} person;
Valid: person.name[4]; -✓✓Individual members can be arrays and structures,
advantage that same structure type can be used in a list many times
• NUMRECS 5 -✓✓Used to define an array of data