1.
Select all the true statements.
- In C++, anything done with a member function can also be done by a free-standing function
- Though sometimes there may be an advantage of one over the other this process is doable and converting from one form to the other is a mechanical process
- In a function that operates on 3 structures, 2 are accessed with dot notation
- There is one implicit structure, and two structures that need to be accessed with dot notation.
- The scope resolution operator should be used every time you work with data structures and implement member function inside the structure definition.
- The scope resolution operator need not be used everytime one works with structures and is used to implement member functions outside the class definition.
- The
this
keyword is used to refer to the current object - The
this
keyword is a pointer to the current object.