Co wykonuje poniższy fragment kodu w JavaScript?
| n = "Napis1"; s = n.length; |
| n = "Napis1"; s = n.length; |
int zmienna1 = 158; int *zmienna2 = &zmienna1;
public class Point { public void Move(int x, int y) {...} public void Move(int x, int y, int z) {...} public void Move(Point newPt) {...} }




| $ile = mysqli_num_rows($zapytanie); for ($i = 0; $i < $ile; $i++) { $wiersz = mysqli_fetch_row($zapytanie); echo "<p>Klient: $wiersz[0] $wiersz[1], adres: $wiersz[2] </p>"; } |
int tablica[10]; for (int i = 0; i < 10; i++) { if (i % 3 != 0) std::cout << tablica[i] << ", "; }
| id | klasa_id | marka | model | rocznik |
|---|---|---|---|---|
| 1 | 1 | ford | ka | 2017 |
| 2 | 2 | seat | toledo | 2016 |
| 3 | 3 | opel | zafira | 2018 |
| 4 | 2 | fiat | 500X | 2018 |
| 5 | 3 | opel | insignia | 2017 |
SELECT model FROM samochody WHERE rocznik > 2017 AND marka = "opel";
| <ol> <li>Pierwszy</li> <li>Drugi</li> <li>Trzeci</li> </ol> |
public class Owoc { } public class Truskawka extends Owoc { } public class Jablko extends Owoc { }

var x = 5; var y = 3; if (x = y) document.getElementById("demo").innerHTML = "zmienne są równe"; else document.getElementById("demo").innerHTML = "zmienne się różnią";

h1 { font-style: oblique; font-variant: small-caps; text-align: right; }
