Explain the difference between transient and volatile in java?
No Answer is Posted For this Question
Be the First to Post Answer
why java is not supporting multiple inheritence?
Why is java architectural neutral?
Can java run on google chrome?
What is the += operator called?
How dead lock situation occurs in java and how you can identify it?
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 update method called?
What is the difference between throw and throws?
What is a char in java?
class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }
Why collection doesn’t extend cloneable and serializable interfaces?
How do you use spaces in java?