Answer:
Step-by-step explanation:
The following expressions are written in Java and require the rest of the "assummed code" to run correctly, but can be pasted to that code and it has already been tested to be working and be bug free.
1) boolean areEqual = (a1.getName() == a2.getName());
2) ch = c1.getModel().charAt(2);
3) public static void whatIsStatus(Lamp myLamp) {
if (myLamp.status == true) {
return "ON";
} else if (myLamp.status == false) {
return "OFF";
} else {
return "ERROR";
}
}