QUESTION 15 The component type of an array cannot be a struc
QUESTION 15
The component type of an array cannot be a struct.
True
False
__________________________________________________________________________________
QUESTION 17
Typically, in a program, a struct is defined ____ in the program.
1. in the main function
2. before the definitions of all the functions
3. after the definitions of all the functions
4. in any function
__________________________________________________________________________________
QUESTION 26
In C Programming, standard input and output is done in streams, unlike the function calls of C++ Programming.
True
False
__________________________________________________________________________________
QUESTION 30
A struct is a definition and a declaration.
True
False
__________________________________________________________________________________
QUESTION 35
A member of a struct can be another struct.
True
False
Solution
15.
Statement : The component type of an array cannot be a struct.
The above statement is false.
17.
Typically, in a program, a struct is defined before the definitions of all the functionsefore the definitions of all the functions in the program.
Option 2 is correct choice.
26.
Statement : In C Programming, standard input and output is done in streams, unlike the function calls of C++ Programming.
The above statement is True.
30.
Statement : A struct is a definition and a declaration.
The above statement is True.
35.
Statement : A member of a struct can be another struct.
The above statement is True.

