How To Print Hello World in Java

Everyone starts at some point to learn something new. However, this concept is valid and invalid for programmers,  learning new languages. As every time learn a new programming language, the ritual of writing the first Hello World program remains the same. So it’s always a great thing to start learning any new programming language with a hello world program. Therefore today we’ll start the journey of Java programming. By learning how to print Hello World in Java.

One of the easiest and simple programs, you’ll ever write in Java. The reason is that whatever program you’ll write next is going to be a level up than this one.

 

What’s The Approach?

 

  • Firstly, we’ll create a class

 

  • Next up, create a main function/method.

 

  • Finally, we’ll write a print statement by passing a string, Hello World.

 

Also Read: How to Install Java JDK JRE on Windows 11

 

Java Program To Print Hello World

 

Output:

Hello World

 

// This is a simple Java Hello World program.


class TechDecodeTutorials {

    public static void main(
        String args[])
    {
        System.out.println("Hello World");
    }
}

Ethix

I'm a coding geek interested in cyberspace who loves to write and read

Leave a Reply

Your email address will not be published. Required fields are marked *