Why is Java a platform independent language?
Answer / nashiinformaticssolutions
One of the most well-known and widely used programming languages is Java. It is a programming language that is independent of platforms. Java doesn't demand that the complete programme be rewritten for every possible platform. The Java Virtual Machine and Java Bytecode are used to support platform independence. Any JVM operating system can run this platform-neutral byte code. The application is run after JVM translates the byte code into machine code. Because Java programmes can operate on numerous systems without having to be individually rewritten for each platform, the language is referred to as "Write Once, Run Anywhere" (WORA).
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the key functions of data binding?
0 Answers Akamai Technologies, Aspire, Impetus, Infogain, Tavant Technologies, Virtusa,
What is difference between hashset and hashmap?
How to display all the prime numbers between 1 and 100
What are namespaces in java?
What is the difference between a synchronized method and a synchronized block?
What is printwriter in java?
Can we clone singleton object in java?
What is the difference between abstract class and interface?
What is blank final variable?
What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }
What are java packages? What's the significance of packages?
What is the difference between serialization and deserialization?