wearenumberone689 wearenumberone689 30-03-2021 Computers and Technology contestada What values are stored in nums after the following code segment has been executed? int[] nums = {50, 100, 150, 200, 250}; for (int n : nums) { n = n / nums[0]; } [1, 2, 3, 4, 5] [1, 1, 1, 1, 1] [1, 100, 150, 200, 250] [50, 100, 150, 200, 250] An ArithmeticException is thrown.