Given: (Exhibit) Which statement on line 1 enables this code fragment to compile? By Singh | January 7, 2023 0 Comment Given:Which statement on line 1 enables this code fragment to compile? A. Function function = String::toUpperCase; B. UnaryOperator function = s > s.toUpperCase(); C. UnaryOperator<String> function = String::toUpperCase; D. Function<String> function = m > m.toUpperCase(); Correct Answer: C