Computer Science, asked by andriyajenson1233, 2 months ago

please answer it correctly in a paper and show​

Attachments:

Answers

Answered by KingdomOfNepal
7

Errors in the program are :-

  1. The keyword class is starting with capital letter which should start with small letter.
  2. The class name is starting with small letter which should start with capital letter.
  3. There is no any starting parenthesis after the class .
  4. The main is written in small letter which here is in capital letter.
  5. keyword String is starting with small letter which should start with capital letter.
  6. In the body of the program, System.println is written where .out.println is missing.
  7. The closing apostrophe is given in single which should be in double ( " ) .
  8. 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