

InterviewSolution
Saved Bookmarks
1. |
C = 1sum = 0while (c < 10):c = c + 3sum = sum + cprint (sum)what is output? |
Answer» Answer: 11 will be the output Explanation: |
|