Który z obrazków ilustruje efekt działania podanego fragmentu kodu HTML?



| GRANT SELECT, INSERT, UPDATE, DELETE ON klienci TO adam@localhost |
| Podaj pierwszą liczbę: <input type="text" name="liczba1" /> Podaj drugą liczbę: <input type="text" name="liczba2" /> …. <script type=text/javascript> function dodaj() { // ta funkcja realizuje dodawanie i podaje jego wynik } </script> |



| function fun1(a,b) { if ( a % 2 != 0 ) a++; for(n=a; n<=b; n+=2) document.write(n); } |

| var wynik = 0; for (i = 0; i < 100; i++) if (liczby[i] % 2 == 0) wynik += liczby[i]; |
| function Person(name) { this.name = name; } Person.prototype.sayHello = function() { return `Hello, ${this.name}!`; }; const person = new Person('John'); console.log(person.sayHello()); |
| <table border="1"> <tr> <td> 1 </td> <td> 2 </td> </tr> </table> |