Can an object be null?
Enlist few advantages of inheritance?
Can you make a constructor final in Java?
0 Answers SwanSoft Technologies,
What is an argument java?
How would you format a date in java? I.e. In the ddmmyyy format?
What is meant by javabeans?
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 does java not support operator overloading?
What are the basic concepts of OOPS in java?
0 Answers Axtria, ITC Indian Tobacco Company,
What are different access specifiers in java? Explain
Are registers volatile?
what is meta-Inf?
Which package has light weight components in java programming?