System --is a class which is present in java.lang package.
Out-- is a static field present in system class which returns a PrintStream object.As out is a static field it can call directly with classname.
Println()-- is a method which present in PrintSream class which can call through the PrintStream object return by static field out present in System class to print a line to console.
Out-- is a static field present in system class which returns a PrintStream object.As out is a static field it can call directly with classname.
Println()-- is a method which present in PrintSream class which can call through the PrintStream object return by static field out present in System class to print a line to console.