Given an array of n integers. Find the minimum positive number to be inserted in array, so that sum of all elements of array becomes prime. Example 1: Input: N=5 arr = {2, 4, 6, 8, 12} Output: 5 Explanation: The sum of the array is 32 ,we can add ...