What is factor r?
No Answer is Posted For this Question
Be the First to Post Answer
What is function declaration?
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
whays is mean by inner class?
What is int lol?
What is the difference between math floor and math round?
How do you sort in ascending order in java?
Is .net better than java?
What is the difference between abstract class and interface1? What is an interface?
Explain parallel processing in java8?
Can you explain the meaning of aggregation and composition
Why do we override tostring method in java?
what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread