Given the contents of Student.java:
Which statement is true?
The commands:
javac Student.java
java Student Richard William Java
throw an error about a missing Course.class file.
javac Course.java
java Course
java Student “Richard William” Java
are used to print Richard William is studying Java.
Submit