About Lesson
What is Java Statement
-  In Java a statement is a complete command to be execute and can include one or more expressions.
- Â All Java statements must end with a semicolon (;). This tells Java that it should attempt to process all information up to that semicolon.
- In simple word, a Java statement is an instruction that describes what should happen.
System.out.println("This is Statement");​