find the error in the following
1) System.out.println(how are you);
Answers
Answered by
3
Answer:
The error is missing quote ("")
System.out.println("how are you");
Answered by
1
Answer:
unquoted text
Explanation:
System.out.println("how are you");
The above is the correct syntax to print something.
Similar questions