diff --git a/guide/english/java/index.md b/guide/english/java/index.md index ee4e6e3109..d5ad161695 100644 --- a/guide/english/java/index.md +++ b/guide/english/java/index.md @@ -84,7 +84,8 @@ Verify Java has been properly installed in your system by opening Command Prompt ## JVM -Ok now since we are done with the installations, let's begin to understand first the nitty gritty of the Java ecosystem. Java is an interpreted and compiled language, that is the code we write gets compiled to bytecode and interpreted to run. We write the code in .java files, Java compiles them into bytecodes which are run on a Java Virtual Machine or JVM for execution. These bytecodes typically have a .class extension. + +After finishing the installation, we can begin to understand the nitty gritty of the Java ecosystem. Java is an interpreted and compiled language, that is the code we write gets compiled to bytecode and interpreted to run. We write the code in .java files, Java compiles them into bytecodes which are run on a Java Virtual Machine or JVM for execution. These bytecodes typically has a .class extension. Java is a pretty secure language as it doesn't let your program run directly on the machine. Instead, your program runs on a Virtual Machine called JVM. This Virtual Machine exposes several APIs for low level machine interactions you can make, but other than that you cannot play with machine instructions explicitely. This adds a huge bonus of security.