♨️
Java Introduction

What is Java?

Java is a high-level (self-memory managing), object-oriented language. An object-oriented language is where code is bundled into a class which can be used as an object for easy data transfer, access, and more.

Key Takeaway(s)

  • Platform Independance: The motto of Java is "Write once, run anywhere", meaning that no matter what code you write, most platforms support it via the Java Virtual Machine (JVM).
  • Self-Memory Managing: Java features automatic memory management through garbage collection, enhancing stability by handling memory allocation and deallocation to prevent leaks.