InterviewSolution
Saved Bookmarks
| 1. |
If object of class are created, then the static data members can be accessed ____________(a) Using dot operator(b) Using arrow operator(c) Using colon(d) Using dot or arrow operator |
|
Answer» Right answer is (d) Using dot or arrow operator For explanation: The static data members can be accessed in usual way as other members are accessed using the objects. The dot operator is used generally. Arrow can be used with the pointers. |
|