About Question enthuware.ocpjp.i.v11.2.1321 :
Posted: Fri Dec 04, 2020 12:18 pm
Hi,
it seems there is a misconception. Missing file extension as in viewtopic.php?f=2&t=5736
Correct option is "It will throw an exception and end without printing anything.", because it is throws the exception.
Thanks.
it seems there is a misconception. Missing file extension as in viewtopic.php?f=2&t=5736
Correct option is "It will throw an exception and end without printing anything.", because it is throws the exception.
Code: Select all
C:\1\projects\sandbox-java\sandbox-java11-cmdline\casetwo>java Parser one
Error: Could not find or load main class Parser
Caused by: java.lang.ClassNotFoundException: Parser
Code: Select all
C:\1\projects\sandbox-java\sandbox-java11-cmdline\casetwo>java Parser.java one
Parser.java:8: error: cannot find symbol
System.out.println("Problem in " + i );
^
symbol: variable i
location: class Parser
1 error
error: compilation failed