InterviewSolution
Saved Bookmarks
| 1. |
The static member functions ____________________(a) Can be called using class name(b) Can be called using program name(c) Can be called directly(d) Can’t be called outside the function |
|
Answer» The correct choice is (a) Can be called using class name For explanation: The static members can be accessed using class name also. This is because the static members remain common to all the objects. Hence objects are not required. |
|