Multiple choice

Which of the following methods is not provided by AsyncTask?

  1. doInBackground()

  2. doInFront()

  3. onPreExecute()

  4. onPostExecute()

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

Following are the methods provided by AsyncTask: doInBackground(), onPreExecute(),onPostExecute(), onProgressUpdate(), isCancelled(). There is no method called doInFront() provided by AsyncTask.