2027) Questions & Answers {Grade A}
100% Correct
When a single-dimension array is passed to a function, the parameter declaration for
the array can either be a(n) ________ declaration or a ________ declaration - correct
answer array, pointer
Pointer notation and pointer arithmetic are especially useful to - correct answer
manipulate string elements
ptrVal is a - correct answer pointer
*ptrVal refers to - correct answer the value in which the pointer is pointing to
,&val is read as - correct answer the address of val
each data item is an entity - correct answer data field
all data fields together form a single unit called a _________ - correct answer record
A record in C is called a __________ - correct answer structure
Structure form consists of - correct answer symbolic names, data types, and
arrangement of individual data fields
Structure's contents consist of - correct answer Actual data stored in the symbolic
names
, Single structures reserve storage for the individual data items listed in the structure -
correct answer True
Data items are __________ of the structure - correct answer members
Assigning actual data values to data items of a structure populating the structure -
correct answer Assigning actual data values to data items of a structure
Multiple variables cannot be defined in one statement - correct answer False
It is common to list the form of the structure with no following variable names -
correct answer True
The list of structure members must be preceded by a user-selected structure type
name - correct answer True