Given: (Exhibit) Which two independent changes will make the Main class compile? (Choose two.) By Singh | December 31, 2022 0 Comment Given:Which two independent changes will make the Main class compile? (Choose two.) A. Move the entire Student class declaration to a separate Java file, Student.java. B. Change line 2 to public Student(String classname). C. Change line 1 to public class Student {. D. Change line 3 to Student student = new Student(“Biology”);. E. Change line 1 to static class Student {. Correct Answer: B,D