Solved

The AsyncTask Class Uses Three Generic Types That We Must

Question 3

Multiple Choice

The AsyncTask class uses three generic types that we must specify when extending it. The class header of a subclass is as follows:
AccessModifier ClassName extends AsyncTask< Params, Progress, Result>
Params is the data type of an array that is passed to what method when we call that method?


A) doInBackground
B) execute
C) onPostExecute
D) finish

Correct Answer:

verifed

Verified

Related Questions