Return Statement:A return statement is used within a method to explicitly return a value back to the caller of the method.
Non-Void Methods: Non-void methods are methods that have a return type other than void. They are used when you want the method to compute and provide some result back.
Main Method: The main method is the entry point of a Java program. It has a specific signature and serves as the starting point for executing code in your program.