- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
JVM, JDK, and JRE
VM (Java Virtual Machine):
- Definition: Abstract computing machine for executing Java bytecode on various hardware platforms.
- Functionality: Executes Java bytecode, manages memory, performs garbage collection.
- Platform Independence: Enables Java programs to run on any device with compatible JVM.
JDK (Java Development Kit):
- Definition: Development kit for creating Java applications.
- Components: Compiler (javac), Java Runtime Environment (JRE), development tools.
- Usage: Developers use JDK for writing, compiling, and debugging Java applications.
JRE (Java Runtime Environment):
- Definition: Runtime environment for running Java applications.
- Functionality: Executes Java bytecode, includes JVM and core libraries.
- Deployment: End-users install JRE to run Java applications, excludes development tools.
Summary
- JVM interprets and executes Java bytecode.
- JDK includes tools for Java development, including compiler and runtime environment.
- JRE provides the runtime environment required to run Java applications, including JVM and core libraries.