Java tutorial#part1

Hello friends I am ariyo halder. I learned Java at the age of 12. Really it was very amazing to learn. It was my first programming language that I learned.


Let's start with the basics of java.


  • Java is an object-oriented programming language that is easy-to-use.
  • The first name of java was Oak.





         Installation of JDK
  • Download JDK from the official website of oracle.
  • Then install it in your pc.
  • Add JDK to path- system>security>device manager>environment variables>add new. Then paste the path of bin folder of program file in JDK.
  • Now you are good to go.
Let's write a hello world program in java.

Class main{
Public static void main (String [] args){
System.out.println("Hello world")
    }
}


OUTPUT: Hello world

See you guys in my next post. 



Comments

Post a Comment

Popular posts from this blog

Java tutorial#part3

Java Tutorial#part2