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