In a multi-threaded application, an exception in one thread should be handled in a way that ________.

  • Does not affect other threads
  • Pauses all threads until resolved
  • Prompts the user for a resolution
  • Terminates the entire application
Handling an exception in a way that does not affect other threads is essential in a multi-threaded application. Pausing or terminating the entire application is generally not recommended as it could disrupt other threads and impact the overall application stability.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *