What is the use of coding?
No Answer is Posted For this Question
Be the First to Post Answer
What does system out println () do?
What is final?
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
how to get the max salary and name of employee from arraylist without using the Comperator or even Comparable interface?
Can we have two main methods in a java class?
After compilation of java program we'll get .class code. If it's generated in OS Windows XP will it work on OS Linux? If yes why? If no why?
What are the elements of java?
explain different ways of using thread? : Java thread
aabccdee Find the used alphabets as abcde ?
Why can we not override static method?
Define an applet in java?
What is inner class?what is the use of inner class?where we create the object for inner class? and inner class can extend any class or inner class can implement any interface?