For this 1331 exam, I understand that: It is a closed book…

For this 1331 exam, I understand that: It is a closed book exam No notes are allowed No restroom breaks allowed No handheld calculator allowed No headphones are allowed (unless you have documented accommodations with disability services) No hats are allowed I cannot take the exam in a public area There should not be excessive background noise My face must be clearly visible (i.e. use of face coverings are not permitted during the exam) TWO sheets of scratch paper is allowed (make sure to show both front and back to the camera now)

Given the code, is Cart a checked or unchecked exception? Is…

Given the code, is Cart a checked or unchecked exception? Is Screen a checked or unchecked exception? Cart : Screen : class Cart extends RuntimeException {     public Cart(String msg) {          super(msg);      }  }  class Screen extends Exception {     public Screen(String msg) {          super(msg);      }  }

Given the code, is Location a checked or unchecked exception…

Given the code, is Location a checked or unchecked exception? Is Missing a checked or unchecked exception? Location : Missing : class Location extends RuntimeException {     public Location(String msg) {         super(msg);     } }  class Missing extends Exception {     public Missing(String msg) {         super(msg);     } }