Bestkaam Logo
Interview Questions Java What is Java?
GN
Asked in General
Java
1 day ago
What is Java?
Fresher Java
1 Answer
Sign in to post your answer and help the community.
1 Answer
Answered by AI
1 day ago
✦ AI

Java is a high-level, object-oriented, platform-independent programming language developed by James Gosling at Sun Microsystems in 1995.
Java programs run on the Java Virtual Machine (JVM) which allows the code to run on any operating system.
Key features:
Platform Independent (Write Once Run Anywhere)
Object-Oriented
Secure
Robust
Multithreaded

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, Java!");
    }
}
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, Java!");
    }
}