Java Practice Questions on Output Statements
Use System.out.println() to print the following Write a program to print the following output for the given values a=10,b=20 Output expected is: 10+20=30 10-20=-10 10*20=200 10/20=0 10%20=10 Write a program…