Lab 3 Grading Guideline ======================= [A] Attendance (35 points) Check the gradebook sheet for an indication of attendance for this lab. If the student attended, award 35 points. Otherwise, award 0 points. [B] interactions.txt file contents (65 points - 15 points per sub-section) Note that there should at least be five different lines of code to satisfy all these requirements - if there are less than five lines present, the student can only earn a maximum of the number of lines * 15. Note that this file is plain text and not executable code. (B1) Create a Room object There should be code inside the file that reads: new decorator.Room() (B2) Create a Room object and add curtains to it There should be code inside the file that reads: new decorator.Room().addCurtains() (B3) Create a Room object and add curtains to it with a color specified There should be code inside the file that reads: new decorator.Room().addCurtains(new COLOR) **** where COLOR is replaced by a color (B4) Create a Room object with walls of a particular color There should be code inside the file that reads: new decorator.Room(new COLOR) **** where COLOR is replaced by a color (B5) Create a Room with colored curtains and colored walls There should be code inside the file that reads: new decorator.Room(new COLOR).addCurtains(new COLOR) **** where COLOR is replaced by a color *****NOTE: Some students may have chosen to create variables to hold onto the references of these objects. This is not required or necessary, but acceptable. Therefore, there should be no points lost for doing so.