what do you meant by Platform-Independent?
Answer Posted / rohit jadhav
Platform-independent means a code which's execution does
not depend on platform.
A code which can be executed on any platform is called a
platform-independent code.
When a java program is compiled the JVM creates a . class
file which contains a byte-code in it and this byte-code
can be executed on any platform.
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
Difference between object and reference?
What is difference between public static and void?
How objects are stored in java?
Tell me the latest versions in java related areas?
What are three ways in which a thread can enter the waiting state in java programming?
In case of inheritance what is the execution order of constructor and destructor?
How is final different from finally and finalize?
Write a program to check for a prime number in java?
How many types of design patterns are there?
What are benefits of java?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
What is a text string?
What is difference between hashset and hashmap in java?
What is the purpose of format function?
What do you mean by compiler?