Advertisements
Advertisements
Question
How are private members of a class different from public members?
One Line Answer
Short Answer
Solution 1
The scope of the private members is within the class whereas the scope of the public members is global.
shaalaa.com
Solution 2
- Private:
- A private access specifier restricts access to a variable or method within a class.
- Private elements are not shared with other classes during inheritance.
- Public:
- A public specifier indicates that a variable or method is directly accessible from all classes.
- During inheritance, one class shares public elements with another.
shaalaa.com
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
What are the two ways of invoking functions?
Differentiate between formal parameter and actual parameter.
Write a menu-driven program to display the pattern as per the user’s choice.
For an incorrect option, an appropriate error message should be displayed.
Method which is a part of a class rather than an instance of the class is termed as ______.
Invoking a method by passing the objects of a class is termed as ______.
Assertion (A): Static method can access static and instance variables.
Reason (R): Static variables can be accessed only by static method.