How can you share data between two thread in Java?
Which class is the immediate superclass of the Container class?
In how many ways we can do synchronization in java?
What is an exception?
Which command from the jdk compiles a java program?
What are the performance implications of interfaces over abstract classes?
What is arraylist class in java?
hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class
Explain working of call by reference function invoking.
GoldMansachs Interview process....
If a variable is declared as private, where may the variable be accessed?
Explain jdk, jre and jvm?
What is a java list?