1018062 1018062 04-01-2023 Computers and Technology Answered What is output by the following code? Select all that apply. c = 0 while (c < 11): c = c + 6 print (c) Hi