1.

What will be the output of the following PHP code ?<?php$s = 2;for (1; $s == 1; $s = 2) { print "In for loop executed..."; }print "After for loop statement executed... n";?>

A. Nothing
B. In for loop executed...
C. After for loop statement executed...
D. Error
E. None of these
Answer» D. Error


Discussion

No Comment Found

Related MCQs