Explanation of Solution
Error #1:
Error:
In line 1, the statement is missing a“{” parenthesis.
Error #2:
Given statement:
//define main method
public static void main(String[]){
Error:
In line 2, the statement is missing keyword “args”.
Corrected statement:
//define main method
public static void main(String[] args){
Error #3:
Given statement:
//print the statements
System.out.println(" t hat"); /* this part should
System.out.println("all"); really say,
System.out.println("men"); "all PEOPLE! " */
Error:
In line 8: the comment on lines 8-10 accidently comments out lines 9-10 of the program. The comments should be given using “//” to fix the problem.
Corrected statement:
System.out.println(" t hat"); //this part should
System.out.println("all"); //really say,
System.out.println("men"); //"all PEOPLE! "
Error #4:
Given statement:
System.out.println("are";
Error:
In line 11, a closing parenthesis“)” is missing...
Want to see the full answer?
Check out a sample textbook solutionChapter 1 Solutions
Building Java Programs: A Back To Basics Approach (5th Edition)
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education