Multiple choice

________ should be used to run a process after completion of background process.

  1. Handler class

  2. View.postDelayed(Runnable, long)

  3. onPostExecute(…) method of AsyncTask

  4. Both (1) and (3)

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

Both Handler class and onPostExecute() can execute code after background work completes. Handlers provide flexible timing control while AsyncTask's onPostExecute is specifically designed for post-background UI updates.