0% found this document useful (0 votes)
12 views

Java Notes

Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

Java Notes

Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Java Tutorial

Last Updated : 04 Oct, 2024


This Java Tutorial is designed for beginners as well as experienced professionals.
Whether you're starting your Java journey and looking to understand the basics of
Java or its advanced concepts, this free Java tutorial is the perfect resource for
you.

What is Java?
Developed by Sun Microsystems in 1995, Java is a highly popular, object-oriented
programming language. This platform independent programming language is utilized
for Android development, web development, artificial intelligence, cloud
applications, and much more.

In this tutorial, we will cover everything from the basics of Java syntax to
advanced topics like object-oriented programming and exception handling. So, by the
end of this tutorial, you will have a strong understanding of Java and be ready to
start writing your own Java applications. So let's get started on this
comprehensive Free Java programming Tutorial!

First Java Program

// A Java program to print "Hello World"


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

You might also like