What is the main function in java?
difference between String a; and String a=new String();? y do v need to assign memory to the variable?
What is jit compiler ?
How do you decide when to use arraylist and linkedlist?
What is aggregation?
What are different types of Exceptions?.
Mention a package that is used for linked list class in java.
What are the steps to do connection pooling in weblogic?
Why is java not 100% pure oops?
Can we serialize arraylist in java?
Is string is a data type?
public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }
What is user defined exception in Java?