CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
Java Quiz #32

Generic Max Method

mediumGenerics, Methods

What does this generic method return when called as max(3, 7)?

📄 Code

1public static <T extends Comparable<T>> T max(T a, T b) {
2 return (a.compareTo(b) >= 0) ? a : b;
3}