+ 5
Yes. The whole point of encapsulation is to hide the variables from other classes, you can only accomplish this by setting them private.
To manipulate the values of these variables you can write getters and setters (public functions for modifying the private variables)..



