Question 1 Report
Fig. 1 shows a robot warehouse route selector. The robot can use the narrow aisle when its load is light or its battery is low. The Boolean variables lightLoad and lowBattery are set by sensors before the route algorithm runs.
(a) State the output when both sensor values are true. [1]
(b) Give the output when lightLoad is false and lowBattery is true. [1]
(c) State the output when both values are false. [1]
(d) Give a Boolean expression for a different route that is selected only when the load is light and the battery is not low. [3]
An OR operation produces true when at least one input is true.
lightLoad OR lowBattery is true. [1]lowBattery input is enough for an OR gate, so the output is true. [1]lightLoad AND NOT lowBattery. AND requires both conditions, while NOT reverses the value of lowBattery. [3]Exam reminder: OR means one or both inputs can be true; AND means every required input must be true.
Everything you need to excel in your exams