Welcome to the World of Online Learning:
Hello Friends “This blog helps you to learn Java programming concepts. You can learn Java language at your own speed and time. One can learn concepts of Java language by practicing various programs given on various pages of this blog. Enjoy the power of Self-learning using the Internet.”

Write a Java Hello World Program
PROGRAM:Java Hello World Program
/*Java Hello World Program */
// Your First Program
class HelloWorld {
public static void main(String[] args) {
System.out.println(“Hello, World!”);
}
}
Output :- Hello World