Analise o código abaixo, que foi executado em um servidor apache com php 8.2 e marque qual foi o resultado exibido.
1 - <!DOCTYPE html>
2 - <html>
3 - __ <body>
4 - <?php
5 - function a1($z) {
6 - a2($z,3);
7 - }
8 - function a2($i, $j){
9 - for ($x = 1; $x <= $i; $x++) {
10 - if( $x % $j > 0)
11 - echo “0”;
12 - else
13 - echo “1”;
14 - }
15 - }
16 - $a = “10.0”;
17 - a1($a);
18 - ?>
19 - __ </body>
20 - </html>