What would be the result of the following code being executed?
class Main {
public static void main(String[] args) {
}
System.out.println(I am learning Java);
a.) There would be an error due to the missing double quotes around the string
value I am learning Java.
b.) There would be an error due to the missing single quotes around the string value
I am learning Java.
c.) The program would output I am learning Java to the screen.
d.) There would be an error as there was not a comment before the printin line.