Instead of listing what a CPU is made of, it helps to follow one ordinary action through the machine and see which part actually does something to the data along the way.
Say a user presses a key on the keyboard, expecting to see that character appear on the screen. The keyboard itself does not know what a letter looks like on screen. It simply generates a scan code, a small electrical signal that identifies which key was pressed, and sends that signal into the system.
That raw signal then reaches the CPU. This is where the real work happens: the CPU interprets the scan code, matches it to the correct character, decides how and where it should be displayed, and sends the finished instruction onward. Nothing about the signal is understood or transformed until it passes through the CPU.
Finally, the monitor receives the already-processed instruction and simply lights up the corresponding pixels to display the character. The monitor is doing display work, not interpretation.
Tracing this single action, keyboard to CPU to monitor, shows that only one link in that chain actually transforms the raw signal into meaningful output, and that link is the CPU.
Therefore, the correct answer is CPU.