Is heap stored in ram?
No Answer is Posted For this Question
Be the First to Post Answer
How do you define a set in java?
Can an object subclass another object?
What is the difference between superclass and subclass?
What are java packages? What's the significance of packages?
Why we do exception handling in java and how many types of exceptions are there?
Distinguish method overloading and method overriding
Why you should not use singleton?
What is the default modifier in Interface?
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 the difference between comparison done by equals method and == operator?
In which order the iterator iterates over collection?
Explain wait() method of object class ?