PHP - Loops
Which of the following PHP code snippets correctly demonstrates a
do-while loop structure?do-while loop structure?do-while loop must have the do block followed by a while condition ending with a semicolon.do { ... } while (condition); syntax.do; after a while loop.while and lacks parentheses around condition.do { ... } while (condition); [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions