Multiple operations and precedence - Practice Exercises Java Lesson 1: First contact with Java Exercise 1.4: Multiple operations and precedence Objetive: Create a Java program to print the result of the following operations: • -1 + 3 * 5 • (24 +5 ) % 7 • 15 + -4 * 6 / 11 • 2 + 10 / 6 * 1 - 7 % 2 Source Code: JAVA C# public class Main { public static void main(String[] args) { System.out.println((-1 + 3) * 5); System.out.println((24 + 5) % 7); System.out.println(((15 + -4) * 6) / 11); System.out.println((((2 + 10) / (6 * 1)) - 7) % 2); } } Copy Exercise to ClipBoard Copy Code to ClipBoard Exercisey 1.4