What are abstract classes and anonymous classes?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between the constructors and methods in java?
What are structs in java?
Is java a compiler?
If you are reviewing the code of your team members, what points will you look at, assuming the performance of the application is not so great
In a class implementing an interface, can we change the value of any variable defined in the interface?
what are the design patterns in struts?
what is difference between method overloading & method overridding with example?
Is arraylist sorted in java?
What is a map? What are the implementations of map?
What is a class object?
What is the exact difference in between Unicast and Multicast object? Where will it be used?
public class Base { public void myMethod(int a,intb) {} } // Uses myMethod and then hides it. public class DerivedOne extends Base { private void myMethod(int a,int b); } will this compile or not .yes or no. why