If the members have to be accessed from anywhere in the program and other packages also, which access specifier should be used?
If the members have to be accessed from anywhere in the program and other packages also, which access specifier should be used? Correct Answer Public
The access specifier must be public so as to access the members outside the class and anywhere within the program without using inheritance. This is a rule, predefined for the public members.