Day 02 - 28 Aug
Java Editions
Usage of Package in Java
Hierarchy of a java program
Basic Structure of All Java Program
// Optional package declaration
package com.example.myprogram;
// Import statements (if needed)
import java.util.*;
// Class declaration
public class MyClass {
// Main method
public static void main(String[] args) {
// Program statements
System.out.println("Hello, naztech!");
}
// Other methods (if needed)
// ...
}📝Practical
Program Practice
Class Test
10 Reserved Words of Java
Data Types
Access Modifes in Java
5 Valid Variable Names in Java
Last updated