1) Question with methods use scanner:
1) Create one method that will add four numbers (return method orregular public static void )
2) Create another method that will subtract four numbers (returnmethod or regular public static void )
3) Create another method that will multiplay four numbers (returnmethod or regular public static void )
4) Create another method that will divide four numbers (returnmethod or regular public static void )
5) Create another method that will find average of four numbers(return method or regular public static void )
6) In main method (Two parts):
1) Call four System prompt to enter numbers and four variables thatwill relate to scanner (they should be consistent with
variables declared in above methods).
2) Display results even with system.out.print assigned in mainmethod or in your methods above?