petershenouda05 petershenouda05 16-09-2020 Computers and Technology contestada What is the output of the code below? nums = [34, 27, 13, 2, 17] x = nums[1] FOR EACH num IN nums { IF num < x { x = num } } DISPLAY( x ) a. 13 b. 2 c. 34 d. 27