Select from following answers:- Yes :- this will free your thread to serve other requests while waiting for the I/O to complete.

- No:- Don’t have to use async/await in server app. It’s only for responsiveness on the client.
- Yes::- this put your thread to sleep while waiting for I/O so that it doesn’t use any CPU
- All Above
The operating system waits for the I/O request to complete and then activates a thread that can process the response. In the meantime, the thread can do other work.
Show Correct Answer
Source: microsoft exam(C#) | |
Alert Moderator