How java is similar to c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the drawbacks of reflection?
how session will be expired?
How do you initialize an arraylist in java?
There are 2 methods in a class. Both have the same method signature except for return types. Is this overloading or overriding or what is it?
Give differences between Quicksort &Mergesort. When should these sorts be used andwhat is their running time in java?
Explain an intermediate language?
What is unicode full form?
can java object be locked down for exclusive use by a given thread? Or what happens when a thread cannot acquire a lock on an object? : Java thread
What an i/o filter?
Why is string buffer better than string ?
Can we use string in switch case in java?
How to excute - Interface - Inner class- method can any one tell how to execute/ call this main method public interface abc { static int i=0; void dd(); class a1 { a1() { int j; System.out.println("inside"); }; public static void main(String a1[]) { System.out.println("in interfia"); } } }