How finally used under exception handling?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between an if statement and a switch statement?
write a class to input 2 points by the user & check the line maked by the points is horizontal,vertical or rectangle?
What is an example of a constant variable?
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
what is finalmethod & final variable with example?
What is the biggest integer?
What is map and hashmap in java?
What is the disadvantage of java?
How to handle a web browser resize operation?
Which is better stringbuffer or stringbuilder?
Can an anonymous class be declared as implementing an interface and extending a class in java programming?
What collections you have worked on? Internal working of Hashmap?