CGI interview question

What is the difference between private and protected in Java ?

Interview Answer

Anonymous

22 July 2010

Private variables cannot be accessed from outside the class. Protected variables can be accessed from classes that inherit them.