The Implementation Method of Java
Java is a set of computer software and specifications. It provides a system for developing application software in the computing environment. Java initially released in 1966. Java was developed in Sun Microsystems. The first application of Java is called Star Seven. In the present Java becomes more popular than C and C++. The main reason for that is Java is not platform dependent. Imagine C/C++ code written in Windows. That code can’t compile in Linux server. This is platform dependency. This report based on the implementation method of Java. The computer can understand some instructions. These instructions are in 1s and 0s. These are called machine instructions. Therefore translation from source code to machine code is done by the compiler. The compiler checks the syntax in our code, optimize our code, and generate the machine code. In compile language machine code is first generated. And then machine code is executed by the CPU. But the interpreter executes the code line by line...