Final variables are written in capital letters as per the standards.
Final variables cannot be modified.
Final variables don’t have any default value, without initializing and printing it will give an error.
When used Inside the Method, final Variables can be written without initialization and can also be initialized later.
Whereas, when used Inside as Class Member, final Variables cannot be written without initialization plus they can’t get initialized later.