Jakie wartości zostaną wypisane przez funkcję wypisz(2) zaimplementowaną w JavaScript?
| function wypisz(a) { for (var i=1; i<6; i++) { a++; if ((a%2==0)|| (a%3==0)) document.write(a+" " ); } } |
| function wypisz(a) { for (var i=1; i<6; i++) { a++; if ((a%2==0)|| (a%3==0)) document.write(a+" " ); } } |


| Notice: Trying to access array offset on value of type null in C:\xampp\htdocs\1\biuro.php on line 38 |




ALTER TABLE nazwa1 ADD nazwa2 DOUBLE NOT NULL;
| h1 i { color: red; } |
$licznik = 0; while ($licznik != $x) { echo $licznik; $licznik++; }
<form> <textarea rows="3" cols="30"></textarea><br> <input type="checkbox"> Opcja1<br> <input type="checkbox"> Opcja2 </form>

$tab = array(); for ($i = 0; $i < 10; $i++) { $tab[$i] = rand(-100, 100); } foreach ($tab as $x) { if ($x < 0) echo "$x "; }
<table border="1" cellspacing="0" cellpadding="10">
<tr>
<td rowspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>

