java is pure object-oriented programming language?why it is platform independent.
Answer / ramky
because it can be run in any opreating system, like such as windows linux etc.....
Is This Answer Correct ? | 8 Yes | 1 No |
What is difference between java and java ee?
How do you sort words in java?
What is meant by inheritance and what are its advantages?
What are the types of collections in java?
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 do you mean by composition in java?
What is the purpose of sizeof operator?
Can we able to pass objects as an arguments in java?
Define a package.
When a byte datatype is used?
Can a class declared as private be accessed outside it’s package?
What is float in java?