Check whether product of 'n' numbers is even or odd
Given an array arr[] of size n, the task is to check whether the product of the given n numbers is even or odd. Even product is even, return true, else false.Examples: Input: arr[] = [2, 4, 3, 5]Output: EvenExplanation: Product = 2 * 4 * 3 * 5 = 120, 120 is even.Input: arr[] = [3, 9, 7, 1]Output: Od