What is an anonymous class in java?
Is Java is 100% pure OOPS? Explain?
What is a return in java?
There are 100 keys and values in HashMap.how to get the keys and values?
What is the difference between a public and a non-public class?
Write a method to check if input string is palindrome?
Explain the hierarchy of java exception classes?
What is an object's lock and which object's have locks in java programming?
Why should we create an object? what is a need of it? Apart from access members of a class i want what is a need of object what does it contain?? In normal class to access any member of thaht class we create object where as for static class we access its members using class name. what is a difference between them... thanks in advance.
Which is easier .net or java?
What is JDBC Driver interface?How can you retrieve data from the ResultSet
StringBuilder s = new StringBuilder("Hello Mom");s.append(",I mean,Mother"); Response.Write(s.ToString()); String s = "Hello Mom"; s+ = ",I mean Mom"; Response.Write(s); Which is faster ? which uses the most memory?
Why are generics used?