Respuesta :
The answer & explanation for this question is given in the attachment below.




Every request will take 12 msec, as well as the server could then handle 83.33 requests per second.
So, throughout the single-threaded example, cache successes take 12 milliseconds as well as memory misses consuming 72 milliseconds.
Now,
The weighted average will be:
= [tex]\frac{3}{4} \times 12+\frac{1}{4} \times 72[/tex]
= [tex]9+18[/tex]
= [tex]27[/tex]
It can handle about 37 queries per second. Every one of them having to wait for something like the disc on a multithreaded server involves overlapping.
Thus the above response is correct.
Learn more about multithreaded server here:
https://brainly.com/question/15002212