Question 11
Consider the Java code given below.
public class GenericExample { public <T extends Comparable<T>> boolean compareValues(T a, T b) { // check whether a equal b } public <T> void printValues(T[] values) { // display values } public <T extends Number> double sumValues(List<T> values) { // add the values }}How does class GenericExample look after type erasure?