Write a program to find maximum and minimum number in array?
No Answer is Posted For this Question
Be the First to Post Answer
What is annotation in java?
What do you understand by abstract classes?
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 java beans?
What is java command?
Hi friends i want display Triangle shap stars(*) please can tell me any one java code logic? * *** ***** ******* Like this
Explain polymorphism citing an example.
Outline the major features of java.
Why are the methods of the Math class are static?
What classes of exceptions may be caught by a catch clause in java programming?
What is the difference between inheritance and encapsulation?
Define how can we find the actual size of an object on the heap?