InterviewSolution
Saved Bookmarks
| 1. |
The static data member _________________(a) Can be mutable(b) Can’t be mutable(c) Can’t be integer(d) Can’t be characters |
|
Answer» Correct answer is (b) Can’t be mutable To explain I would say: The static data members can never be mutable. There copies are not made. Since those are common and created only once. |
|