Given:
public class TestOperator {
public static void main(String[] args) {
int result = 30 -12 / (2*5)+1;
System.out.print("Result = " + result);
}
}
What is the result?
Given the code fragment:
What is the result?
A:
B:
C:
D:
E:

Given the code fragment:
Which modification enables the code to print 54321?