Can we write multiple catch blocks under single try block?
What is data type example?
When is the finalize() called?
my method "abc" return array of interface "xyz" and "pqr" is abstract class implements abc and class "jkl" extends pqr My problem 1) when i call abc it retrun array xyz how can i do this hint xyz refer_xyz = new jkl(); but i can't create array. 2)I want to access method of jkl using reference of xyz??
Why can't we override private static methods?
What is the unit of plancks constant?
What is module in oop?
Is it correct to say that due to garbage collection feature in java, a java program never goes out of memory?
difference between String a; and String a=new String();? y do v need to assign memory to the variable?
What is the difference between interpreter and compiling ?
Variable of the boolean type is automatically initialized as?
Can we serialize static variables in java?
7) Suppose there is Student class like class student { int age; string name; } We want to store these objects in a HashMap. Do we need to override any methods in Student class? If any which ones and why? what if i just override equals or just hashcode? what will be the results in both the cases?