Java Flashcards
1
Q
Main
A
public class Main {
2
Q
Public modifier
A
Allows infinite access to variables from outside of the class
3
Q
Protected modifier
A
Allows access to the variable from within the package (project) in which they are created
4
Q
Final modifier
A
prevents variables from being modified
5
Q
Static modifier
A
Refer to variables which act on the class as a whole (and not on individual objects)
6
Q
A