Mangolicious Mangolicious 16-05-2023 Computers and Technology contestada Read the following code: n = 2 while(n < 5): print(n) n = n + 1 What output would be produced for the given values of n? (5 points) 0 1 2 3 4 1 2 3 4 5 2 3 4 2 3 4 5