0% found this document useful (0 votes)
3 views1 page

Java Programming Notes

Java is a high-level, object-oriented programming language created by Sun Microsystems. The basic program structure includes a public class and a main method that prints 'Hello, World'. Key data types include byte, short, int, long, float, double, char, and boolean, with control structures such as if, else, switch, for, while, and do-while.

Uploaded by

priyadarshan8505
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Java Programming Notes

Java is a high-level, object-oriented programming language created by Sun Microsystems. The basic program structure includes a public class and a main method that prints 'Hello, World'. Key data types include byte, short, int, long, float, double, char, and boolean, with control structures such as if, else, switch, for, while, and do-while.

Uploaded by

priyadarshan8505
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Java Programming - Beginner Notes

Introduction
Java is a high-level, object-oriented, platform-independent programming language
developed by Sun Microsystems.

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

Data Types
byte, short, int, long, float, double, char, boolean

Control Structures
if, else, switch, for, while, do-while

You might also like