sigmanelijah sigmanelijah 20-05-2020 Computers and Technology contestada What is output by the code below?int[] nums = new int[10];for (int i=0; i < nums.length; i++){ nums[i] = i*2;}System.out.println(nums[5]); a.16 b. 10 c. 14 d. 18 e. 12