Expand your horizons with the diverse and informative answers found on IDNLearn.com. Find in-depth and trustworthy answers to all your questions from our experienced community members.
Answer:
Explanation:
The correct piece of code for the generic method in the question would be the following...
public static <TheType extends Number> long avgNum(TheType item1, TheType item2, TheType item3)
This declaration of the avgNum method declares this method as a Generic TheType method that is a subclass of the Number class. It also takes in generic parameters which are the same as the Generic class that was declared. Finally, outputting a long value which would be tripleSum / 3