What are the library functions in java?
No Answer is Posted For this Question
Be the First to Post Answer
What are methods?
What is a null check?
Is double bigger than float?
Why to use nested classes in java?
What does index mean in java?
Does a class inherit the constructors of its superclass in java programming?
What is logical variable?
Can you pass functions in java?
What are the different tags provided in jstl?
Can we create our own daemon thread?
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
Why sleep()is in Thread and wait() in Object class? Why can't I have both in one class or vice versa?