1.1. Get Started With Java & Installation

Introduction

  • Java is a high-level, object-oriented programming language.
  • Java follows the “Write Once, Run Anywhere” (WORA) principle, meaning Java programs can run on any device with a Java Virtual Machine (JVM).
  • Everything in Java revolves around objects and classes.
  • Object-Oriented Programming (OOP) is a way of organizing code using objects.
  • Objects are things that have properties (characteristics) and actions (what they can do).
  • Classes are like blueprints for creating objects.

In simpler terms:

  • Code is well Organised and improves Readability
  • Can reuse code
  • making many objects from one class

Pages: 1 2 3