TutorialsBazaar

← Back

Learn Java Programming

Module 1/20

Core Java - Introduction

Module 1 of 20

Java is a high-level, object-oriented programming language developed by Sun Microsystems. It is platform-independent due to JVM (Java Virtual Machine) and widely used for web, desktop, and mobile applications.

Java एक उच्च स्तरीय object-oriented programming भाषा है जिसे Sun Microsystems ने विकसित किया। यह JVM के कारण platform-independent है।

#include <stdio.h>

int main() {
    printf("Welcome to Core Java - Introduction");
    return 0;
}