Python Quiz – While-loop in Python Welcome to your Python Quiz - While-loop in Python Name Email 1. While loop iterates until the condition is False Add description here! True False 2. While loop will execute first and then checks the condition. Yes No 3. If-else can be used inside a while loop Add description here! Yes No 4. We can provide an else statement without if block in while loop python Not possible dude Yes, we can 5. If the given condition is always True, then while loop will iterate forever Definitely No 6. Break can be used to exit from a while loop, even without checking the condition True False 7. While-loop can be alternate option to for loop in Python Yes, in some cases Always Related Posts