Multiple choice onPostExecute(…) method of AsyncTask is work on worker thread work on UI thread work on background thread work on foreground thread Reveal answer Fill a bubble to check yourself B Correct answer Explanation onPostExecute runs on the main UI thread, allowing direct updates to UI elements without needing additional thread synchronization. This is different from doInBackground which runs on a background thread and cannot touch UI components.