0 votes
in JAVA by
What is java language,

1 Answer

0 votes
by
Java is a general-purpose programming language that is class-based, object-oriented and is very popular. It’s one of the most popular programming languages in the world.

Hello World in Java:

public class FileName {

public static void main(String args[]) {

System.out.println(“Hello World!”);

}

}

Related questions

0 votes
asked May 3, 2021 in JAVA by Robindeniel
0 votes
asked Oct 12, 2020 in JAVA by Robindeniel
...