The document discusses different CPU scheduling algorithms:
1) Priority scheduling allocates CPU to the process with the highest priority. Priorities can be assigned internally or externally.
2) Round robin scheduling allocates a small time quantum (10-100ms) to each process in turn to ensure fair sharing of CPU.
3) Examples are provided to illustrate how processes are scheduled under priority and round robin algorithms.