Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 288 Bytes

File metadata and controls

26 lines (19 loc) · 288 Bytes

Q4

What is a loop?

What types of loops are available if PHP 7.4?

What is the practical difference between these 2 loops:

while($x < 1) {
    $x++;
}
do {
    $x++;
} while($x < 1);

What is the value of $x after each loop if it starts as:

  • -1
  • 0
  • 1
  • 8