Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

which of these is not a loop command in php? a for b do_while c while d…

Question

which of these is not a loop command in php? a for b do_while c while d foreach

Explanation:

Brief Explanations

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.

Answer:

There is no correct answer as all A. for, B. do_while, C. while, D. foreach are loop commands in PHP.