145k views
0 votes
Multithreading an interactive program will increase responsiveness to the user by :

a) Continuing to run even if a part of it is blocked
b) Waiting for one part to finish before the other begins
c) Asking the user to decide the order of multithreading
d) None of these

User Tchrist
by
8.7k points

1 Answer

0 votes

Final answer:

Multithreading an interactive program increases responsiveness by continuing to run even if a part of it is blocked.

Step-by-step explanation:

The correct answer is a) Continuing to run even if a part of it is blocked. Multithreading an interactive program allows it to run simultaneous tasks or threads. This means that if one part of the program is blocked or waiting for a resource, other parts of the program can continue running, increasing responsiveness to the user.

User Eloims
by
8.9k points