Assignment Five Java
Assignment Five Java
Sandbox Link:
https://codehs.com/sandbox/subhamguptta/new-sandbox-program-1
Code:
// Abstract Class Department
String dept_name;
this.dept_name = dept_name;
String faculty_name;
int faculty_id;
String[] courses;
super(dept_name);
this.faculty_name = faculty_name;
this.faculty_id = faculty_id;
this.courses = courses;
Page 1 of 5
Registration Number: 12206671 Course Code:CAP680
display_department_name();
// Main class
Faculty f = new Faculty("Kumar", 12345, "SCA", new String[]{"CAP615", "CAP680", "JAVA solution"});
f.display_faculty_details();
Page 2 of 5
Registration Number: 12206671 Course Code:CAP680
Page 3 of 5