What is the difference between an object-oriented programming language and object-based programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by stack and queue?
I want my class to be developed in such a way that no other class (even derived class) can create its objects. Define how can I do so?
What is array pointers ?
What is 3-tier model?
What is initial size of arraylist in java?
Can list be final in java?
How we can execute any code even before main method?
Can I uninstall java?
Can we override static methods in java?
What is the difference between inner class and nested class?
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 } }
what are the analysis of an object