The Elevator algorithm uses a complex condition to decide wh…

The Elevator algorithm uses a complex condition to decide whether a request should be placed into the upsweep or the downsweep queue: if ((position < dest) || ((position == dest) && (direction == up)))a. How will the behavior of the algorithm change if the compound condition is replaced by the simple condition: if (position < dest)b. How will the behavior of the algorithm change if the compound condition is replaced by the simple condition: if (position