Java For Absolute Beginners
incomplete
Abbreviations
*[OS]: Operating System
*[JVM]: Java Virtual Machine
An Introduction to Java and Its History

Portability

Other languages compile source code directly into machine code designed to run on a specific microprocessor architecture or OS (i.e., such as windows)
JVM mimics a Java processor that interprets the program into a sequence of actions or OS calls on any processor regardless of OS
Basics Steps in Java:
Developer writes program.java (source file)
Java compiles source file to program.class (byte code)
JVM executes the byte code on OS (interprets)
Preparing Your Development Environment
Glossary
A definition list or a glossary:
- First Term
This is the definition of the first term.
- Second Term
This is the definition of the second term.
Last modified: 10 March 2024