If a variable is declared as private, where may the variable be accessed?
http://materialsforjob.blogspot.com
It may be accessed in any of the methods defined in that class. Generally for the security of the variables we declare them as private and using the public methods in the class we use them. Making sure that variables are accessible only in that class.
What is the difference between Abstract class and Interface?http://materialsforjob.blogspot.com An abstract class can contain non-abstract methods which do not have to be overridden in the subclass. There is no difference between a fully abstract class (all methods declared as abstract and all fields are public static final) and an interface. How to create a Tabbed Pane in JSP page?http://materialsforjob.blogspot.com //declareprivate...