What happens when I use / and % with a negative numerator?
No Answer is Posted For this Question
Be the First to Post Answer
What is skeleton and stub?
What is the synonym of framework?
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 are literals in java?
difference between byte stream class and character stream class?
what is collatration?
What is a double?
Can we serialize arraylist in java?
What does regex mean?
Is there a sort function in java?
In what circumstances, compiler will supply a default constructor for a class?
How do I get 64 bit java?