0
/ 10
Write the method boolean areAllEven(int[] nums) in Java that returns true if all elements in the array nums are even numbers, and returns...
Write the method boolean areAllEven(int[] nums) in Java that returns true
if all elements in the array nums are even numbers,
and returns false otherwise.
Examples:
areAllEven({-82,62,-88,-78,2,74,88}) -> true
areAllEven({59,-75,23,17,69,-11,75}) -> false
Your feedback will appear here when you check your answer.