Multiple choice ________ should be used to run a process after completion of background process. Handler class View.postDelayed(Runnable, long) onPostExecute(…) method of AsyncTask 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.