The traditional UNIX scheduler enforces an inverse relationship between priority numbers and priorities: the higher the numbe1~
the lower the priority. The scheduler recalculates process priorities once per second using the following function: 4. Priority = (Recent CPU usage / 2) + Base where base 40 and recent CPU usage refers to a value indicating how often a process has used the CPU since priorities were last recalculated Assume that recent CPU usage for process P is 20, process P2 is 16, and process P3 is 8. What will be the new priorities for these three processes when priorities are recalculated? Based on this information, does the traditional UNIX scheduler raise or lower the relative priority of a CPU-bound process?