Question: . Find and correct the 4 errors in the following code (1.5 marks) public class Lab2App { } public static void main(String[] args) {

. Find and correct the 4 errors in the following code (1.5 marks) public class Lab2App { } public static void main(String[] args) { Student s1 = new Student (100); sl.name "Ahmed"; s1.getName(); Student sl; Student s3 = new Student (200, "Mohammed"); class Student { prvate int id; prvate String name; public Student () { } public Student (int id, String name) { } this.id = id; this.name = name; public void setName (String name) { } this.name = name; public int getId() { } return id; public String getName() { return name;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
