Multiple choice

Which of the following classes can be extended to create a simple thread to perform background tasks and publish the results on the UI thread?

  1. Async

  2. AsyncBackgroundTask

  3. AsyncTask

  4. SyncTask

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

We can extend the AsyncTask class to create a simple thread to perform background tasks and publish the results on the UI thread.