Posts

Showing posts with the label online java compiler

What is Java | Learn Java | Types of Java

Image
  What is Java? Java is a widely-used, high-level, object-oriented programminglanguage developed by Sun Microsystems (now owned by Oracle Corporation) in the mid-1990s. It was designed to be platform-independent, meaning that Java programs can run on any operating system or platform that has a Java Virtual Machine (JVM) installed, making it highly portable. Key characteristics and features of Java include: Platform independence: Java achieves platform independence through the "Write Once, Run Anywhere" (WORA) principle. You can write Java code on one platform and run it on another platform with a compatible JVM , without modification. Object-Oriented: Java is an object-oriented programming (OOP) language , which means it uses objects to model and manipulate data and provides features like inheritance, encapsulation, and polymorphism. Robust: Java was designed with a strong emphasis on error checking during compilation and runtime, making it less prone to common ...