/** DegreeProgram is the abstract class for any degree program that a student might take at UCSB */ public class BSCSDegreeProgram extends CoEDegreeProgram { public String departmentRequirements() { return "All of the CS pre-major, and a bunch of upper divison classes, and science classes, and math and ENGR101, and anything else I forgot\n"; } }