Types of Methods

  • Void Methods (No Return Type)
  • Return-Type Methods
Void Methods (No Return Type)

A method with a void return type does not return any value. It just performs an action.

Output
Hello, World!
Return-Type Methods

Methods that return a value must specify the return type (e.g., int, double, String, etc.) and use the return statement to return a value.

Output
Square of 5: 25