How java is platform independent?
Answer Posted / bandana mankotia
Platform Independent means the process in which certain
languages is capable of running on all types of Operating
System.
Java is platform independent bcoz In java when we
execute the source code,it generates the class file
comprising the bytecode.Byte code are easily interpreted by
JVM(interpreter)which is available with every type of O.S
we install
| Is This Answer Correct ? | 25 Yes | 17 No |
Post New Answer View All Answers
What is the use of hashmap in java?
What is java util hashmap?
What is a boolean expression in java?
How to display arraylist values in java?
Implement 2 stacks with just 1 array. The stack routines must not indicate overflow unless every slot in array is used.
Can we define a package statement after the import statement in java?
Write a java program to print fibonacci series?
Can a class have 2 constructors?
Write a program to show whether a graph is a tree or not using adjacency matrix.
Is null == null in java?
Can we have a try block without catch block?
Can we use a default constructor of a class even if an explicit constructor is defined?
Are true and false keywords?
What is the advantage of functional interface in java 8?
Is it compulsory for a try block to be followed by a catch block in java for exception handling?