Computer Science, asked by abhijeet4763, 5 months ago

find the error in the following
1) System.out.println(how are you);​

Answers

Answered by himanshu2006vps
3

Answer:

The error is missing quote ("")

System.out.println("how are you");

Answered by AlastorMadEyeMoody
1

Answer:

unquoted text

Explanation:

System.out.println("how are you");

The above is the correct syntax to print something.

Similar questions