What is the alterantive name of data elements in structures ?
Objects
Members
Datas
None of the mentioned
What is the syntax of defining a structure ?
Int name ( )
Struct name
Strt name
Str name
Which keyword is used for defining a structure ?
Structure
Struct
Str
Stru
Which of the following is a properly defined structure ?
Struct {int a;}
Struct a_struct {int a;}
Struct a_struct int a;
What is nested structure ?
Structure within a structure
Looped structure
Structure lader
Iterative structure
What will happen when the structure is declared ?
It will not allocate any memory.
It will allocate the memory.
It will be declared and initialized
None of these
Which of the following is the correct syntax to access the member 'roll no' of a structure variable named 's1' ?
s1.roll no
roll no.s1
s1.roll no( )
roll no. s1( )
What is the advantage of structure over arrays ?
Group variables of similar type.
Have lot of memory space.
Group variables of different type
Easy to access
What is the syntax for accessing a structure member ?
Structvar::member name
Structvar.member name
Strvar;member name
Strvar::member name
What is the other name of declaration of structure ?
Structure creator
Structure signifier
Structure specifier