Which is a valid type for this lambda function?
_____ oddOrEven = x -> { return x % 2 == 0 ? "even" : "odd"; };
Function<Integer, String>
Function<String>
Function<Integer, Boolean>
Function<Integer> Explaination, Reference
Function<Integer>