Download as rtf, pdf, or txt
Download as rtf, pdf, or txt
You are on page 1of 1

Java

Java is a compiled programming language, meaning the code we write in a .java file is transformed into byte code
by a compiler before it is executed by the Java Virtual Machine on your computer.

Write once run anywhere is the concept of the java.

The Java Buzzwords:

· Simple

· Secure

· Portable

· Object Oriented

· Robust: To better understand why java is robust, consider two main reasons for program failure: memory
management and exceptional handling.

· Multithreaded: This means the program written can perform multiple task simultiniously.

· Architecture neutral: write once run anywhere.

· Interpreterd and high performance:

· Dynamic

You might also like