What is string data?
No Answer is Posted For this Question
Be the First to Post Answer
What is the advantage of preparedstatement over statement?
What is protected and friendly?
please send code example of inner classes?
write a program to create an arraylist and listeterator.and value should be enter through keyboard.
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?
How to override equals() and hashCode() method in java?
we have two threads..both the threads are reading the data.. is there any need of synchronization there?...justify it?
How java uses the string and stringbuffer classes?
How many types of design patterns are there?
what is web.xml?and its use?
What does java ide mean?
how can we use the servlet as standalone apllication?should we need to extend any class?