OOP with java
Java Introduction to java Java is a general purpose object oriented programming language developed by Sun Micro system of USA in 1991 by the team lead by James Gosling. The main purpose of to create java is for platform independent. It is object oriented means that everything in java is associated with class and object among with attributes (data) and method (function). Here is simple java program public class Hello { public static void main ( String [] args ) { System . out . println ( "Hello world " ); } } Bytecode: Byte code is a lower-level representation of a program that is usually produced as the output of a compiler. It is a series of instructions that can be interpreted by a virtual machine or runtime environment, rather than by the processor of a computer. This makes it easier to run the same progra...