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