please answer it correctly in a paper and show
Attachments:
Answers
Answered by
7
Errors in the program are :-
- The keyword class is starting with capital letter which should start with small letter.
- The class name is starting with small letter which should start with capital letter.
- There is no any starting parenthesis after the class .
- The main is written in small letter which here is in capital letter.
- keyword String is starting with small letter which should start with capital letter.
- In the body of the program, System.println is written where .out.println is missing.
- The closing apostrophe is given in single which should be in double ( " ) .
- The printing message is not ended with a semicolon which is a must.
Correct program :-
class Staff
{
public static void main(String args[ ] )
{
System.out.println("ANNUAL EXAM-2021");
}
}
Note :- The mistakes are highlighted with bold letters.
Similar questions