what do you meant by Platform-Independent?
Answer Posted / vasanthakumari.s
Platform Independance means, generating executable code
independant of the underlying software/hardware platform on
which the code is required to run.
Java uses the concept of a Virtual Machine to abstract the
underlying hardware/software and providing a standard
execution environment for all Java bytecode based programs.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Can we declare a constructor as final?
How are this() and super() used with constructors in java programming?
What is tree in java?
What is member in java?
What differences exist between iterator and listiterator?
Is object a data type in java?
If we don’t want some of the fields not to serialize how to do that?
there are N number of matchboxes numbered 1...N.each matchbox contain various number of stick.Two player can alternatevely pick some amount of stick from the higest stick containing box . The player is condidered win if there is no stick after his move.Find the final move so that the move player win. Note:In case the number of stick is equal ,pick the stick from the higest numbered box.
Can a class be private in java?
What do you understand by looping in java? Explain the different types of loops.
What is Hierarchy of exception?
Can we have any other return type than void for main method?
How do you convert string to int in java?
What is the diffrence between inner class and nested class?
What are the different types of constructor?