InterviewSolution
Saved Bookmarks
| 1. |
Which keyword is used to define the static member functions?(a) static(b) stop(c) open(d) stateThis question was addressed to me in homework.I'm obligated to ask this question of Types of Member Functions in portion Member Functions & its Types of Object Oriented Programming |
|
Answer» RIGHT choice is (a) static Best explanation: The static keyword is used to DECLARE any static member function in a CLASS. The static members become common to each object of the class being created. They share the same VALUES. |
|