is there a separate stack for each thread in java? : Java thread


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Is integer immutable in java?

0 Answers  


How to reverse a string in java?

0 Answers  


Can an interface be final?

0 Answers  


Why does java have two ways to create child threads? Which way is better?

0 Answers  


What is meant by data hiding/encapsulation?

0 Answers   Cyient,






What is run time allocation?

0 Answers   Fidelity,


How will you compute size of a structure?

0 Answers   Amdocs,


what is Abstract DataType?

1 Answers  


Write a program to find maximum and minimum number in array?

0 Answers  


How we can generate random numbers in java?

0 Answers  


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

1 Answers  


What does a boolean method return?

0 Answers  


Categories