What is command line argument in java?
No Answer is Posted For this Question
Be the First to Post Answer
Why object class is super class for every class in java?
Explain the differences between static and dynamic variables?
What is ascii format?
How does linkedlist work in java?
How do you replace all in word?
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
Why do we use variables?
How do you detect memory leaks?
What class is used to create Server side object?
What steps are taken when the OS shifts from one-thread execution to another?
What is the equal sign?
How to disable caching on back button of the browser?