jeannettepennsovik7q jeannettepennsovik7q 29-10-2020 Computers and Technology contestada Read the following code: n = 3 while(n <= 5): print(n) n = n + 1What output would be produced for the given values of n?A. 0 1 2 3 4B. 1 2 3 4 5C. 2 3 4D. 3 4 5