Checkpoint 11.3.1.
Implicit variable access in member functions allows us to access member variables __________.
- after being granted permission
- Incorrect! You don’t need "permission" to access member variables inside a member function.
- only inside of that specific member function
- Incorrect! You can access member variables implicitly inside any and all member functions.
- using dot notation
- Incorrect! You don’t need to use dot notation to access variables implicitly.
- directly, without dot notation
- Correct! Implicit variable access allows us to access variables directly-- without using dot notation.