Consider the following variable declarations.
String s = "crunch";
int a = 3, b = 1;
What is printed by the following statements?
System (s + a + b);
System.out.println(b + a + s);
a. crunch413crunch
b. crunch3113crunch
c. crunch44crunch
d. crunch314crunch
e. Nothing is printed due to a run-time error