Hit the next arrow...
...SIMPLE ...
... OBJECT ORIENTED
DISTRIBUTED
INTERPRETED
ROBUST
INSURANCE
How does Java?
Java applications are typically compiled into a bytecode, although the compilation to native machine code is also possible. At run time, the bytecode is usually interpreted or compiled to native code for the implementation, although the direct execution of bytecode by a Java processor is also possible
What is Object Oriented Programming?
The object oriented programming or POO is a programming paradigm that uses the objects in their interactions, for designing applications and software.
Characteristics of the POO
Abstraction
Encapsulation
Polymorphism
Inheritance
Modularity
Principle of concealment
Garbage collection
Example of programming in Java
public class NewMain { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here System.out.println("Hello World!!!"); } }
THE END