What is the syntax for accessing a structure member ?
Structvar::member name
Structvar.member name
Strvar;member name
Strvar::member name
Which operator is used to access a structure member ?
. (dot) operator
= (assignment) operator
, (comma) operator
:: (scope) operator
What is needed to access the elements of the structure ?
The instance of the structure
Structure name
Struct keyword
Structure tag
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
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 use of structures in C++ ?
Provides a way to bind data and function together.
Provides a way to group data elements.
Provides a way to break the data elements into functions.
Provides a way to allocate data elements.
What is the alterantive name of data elements in structures ?
Objects
Members
Datas
None of the mentioned
Which of the following can group data elements ?
Structure
Array
Array list
Class
What is the other name of declaration of structure ?
Structure creator
Structure signifier
Structure specifier
None of these