Consider the following code:
Item item = new Item<>(); load(item);
Which of the following methods with generic parameters work for the method call above?
a) void load(Item item)
b) void load(Item item)
c) void load(Item<?> item)
d) void load(Item item) 2