Is null a string?
No Answer is Posted For this Question
Be the First to Post Answer
why are wait(), notify() and notifyall() methods defined in the object class? : Java thread
What is Transient and volatile
interface X{ void m1(); void m2(); } class Child2 extends Object implements X { public void m1(){ System.out.println("Child2 M1"); } public void m2(){ System.out.println("Child2 M2"); } } public class ParentChildInfterfaceDemo { public static void main(String[] args){ X x = new Child2(); X x1 = new Child2(); x.m1(); x.m2(); x.equals(x1); } } Will the above code work? If yes? Can you please explain why the code x.equals(x1) will work as the equals method is called on interface reference vaiable?
What is a locale?
Why local variables are stored in stack?
Explain java coding standards for classes or java coding conventions for classes?
take an array with -ve and +ve value both.find out the nearest value of 0(zero).if two values are same like(-2 and +2)then extract +2 is nearest of 0(zero).
Does constructor be static?
Explain oops concepts in detail?
What does s mean in regex?
How will you call an Applet using Java Script Function?
Can we iterate through collection using for loop?