QUESTION IMAGE
Question
which of these is not a loop command in php? a for b do_while c while d foreach
In PHP, 'for', 'do - while', 'while', and 'foreach' are all loop commands. 'for' is a general - purpose loop, 'do - while' executes the loop body at least once and then checks the condition, 'while' checks the condition before executing the loop body, and 'foreach' is used for iterating over arrays. Since all options are loop commands, there is no correct answer among them as the question is misphrased.
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
There is no correct answer as all A. for, B. do_while, C. while, D. foreach are loop commands in PHP.