Consider the following method signature:
static void handle(T item, ArrayList list)
Which of the method calls below are valid for the method signature above? (check all that apply)
(a)ArrayList list = new ArrayList<>();
handle("any", list);
(b) ArrayList list = new ArrayList<>();
handle(new Pet(), list);(c) ArrayList list = new ArrayList<>();
handle(155, list);
(d) ArrayList list = new ArrayList<>();
handle("any", list);