Multiple choice general knowledge history public class Question { Public static void main(String args[]) { int i=10; System.out.println("i="+++i); } i=0 i=11 Invalid argument to operation None Reveal answer Fill a bubble to check yourself C Correct answer Explanation Java is case-sensitive. 'Public' must be 'public', and '+++i' is invalid syntax. The pre-increment operator is '++', so '++ + ++i' or '+ + + i' would be required to parse, making this a compilation error.