Most of you will be very excited to do your first programming in java. So firstly I will tell you how to write a program in java. Basically for writing any program we should have a platform to utilise java. So you should first try to download java jdk from Oracle website and then you should download blueJ which will help you to utilise java.
So as we know that Java is a class based Programming and object based also therefore it starts from the making of class first. We will cover how to make objects in java further.
The program is the first program which 90 percent of students use in java and for deep understanding I have made a video over this whose link is
https://www.youtube.com/watch?v=oHqPKweyMnI&app=desktop
Further we will come with a theoretical class which initialize the study of java. It will come soon so guys please wait and for now you people enjoy java by implementing and writing your first program.
so here is your program,
class A {
public static void main(String args[]){
System.out.println("Hello World");
}
}