Predict the output of the following code segments? [5 points each, total 10 pts]
1) System.out.print ("I am the incredible");
System.out.print ("computing\nmachine");
System.out.print ("\nand I will \namaze\n");
System.out.println ("you.");
System.out.println ("This line might/n be a trick");
2) int x = 23, why = 2, sum, diff, prod, quot, mod;
Sum = x y;
Diff = x - y;
Prod = x * y;
Quot = x / y;
Mod = x % y;
System.out.println (sum "\n" diff "\n" prod "\n" quot "\n" mod);