Which of the following is NOT a correct constructer for ArrayAdapter?

A.
ArrayAdapter(Context context)
B.
ArrayAdapter (Context context, int recourse)
C.
ArayAdpater (Context context , int resource, int textViewResourceId)
D.
ArrayAdapter (Context context , int resource, List<T> items)
A is correct
its A, if you look at the Override methods for ArrayAdapter thats the one that it cant take.
Correct answer is C