A function is always delimited by _______________
Parethesis ( )
Braces { }
Brackets [ ]
Angle brackets < >
What is the property of classes in C++ ?
By default all private
By default public
By default protected
By default friend
An array name, used in the source file, represents the ______ of the array.
Name of array
Address of array
Elements of array
Size of array
A one-statement description of a function is referred to as a function ________
Body
Block
Execution
Declaration
To be accessed from a member function of the derived class, data or function in the base class must be public or __________
Public
Private
Protected
None of these
An address is _________, while a pointer is a _________
Constant, variable
Variable, constant
Constant, static
Static, constant
How the contents of two pointers that point to adjacent variables of type float differ?
2 bytes
1 byte
8 byte
Four bytes
A ________ has the same relation to an ______ that a basic data type has to a variable of that type.
Data, object
Class, object
Private, public
Class, structure
What is followed by the closing brace of a structure?
Dot (.)
Semicolon (;)
Colon (:)
Arrow(?)
A constructors name is same as ____________
Function name
Class name
Array name
Structure name