-
Scrieti verbul din paranteze la timpul Trecut perfect (Past Perfect), in acord cu subiectul.
[
"I ___ (to live)",
"You ___ (to work)",
"We ___ (to learn)",
"He ___ (to guide)",
"They ___ (to look for)",
"She ___ (to see)",
"It ___ here (to be)",
"My uncle ___ the meal before I came. (to finish)",
"The clown ___ twice. (to fall)",
"Your cousin ___ a book. (to write)",
"You ___ when he worked. (to read)",
"It ___ three glasses. (to wash)",
"I ___ my homework before they came. (to do)",
"They ___ some greens. (to get)",
"You already ___ the cart. (to stop)",
"They never ___ before breakfast. (to run )"
]
["had lived","had worked","had learned","had guided","had looked for","had sewn","had been","had finished","had fallen","had written","had read","had washed","had done","had got","had stopped","had run"]
Un Test simplu in fiecare zi
HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Ce tag HTML5 este indicat sa contina meniul cu link-uri de navigare in site?
<section> <nav> <article><nav><ul>
<li><a href="http://coursesweb.net/css/" title="CSS Course">CSS Course</a></li>
<li><a href="http://www.marplo.net/jocuri/" title="Flash Games">Flash Games</a></li>
</ul></nav>
Ce proprietate CSS muta elementrul in dreapta sau stanga de la locul unde e?
text-align clear float.some_class {
width: 30%;
float: left;
}
Clic pe metoda obiectului Math care rotunjeste numarul x descrescator la cel mai apropiat intreg.
Math.ceil(x) Math.abs(x) Math.floor(x)var num = 12.34567;
num = Math.floor(num);
alert(num); // 12
Indicati functia PHP care returneaza numarul de caractere dintr-un sir.
mb_strlen() count() stristr()$str = "sir cu caractere utf-8 åèö";
$nrchr = mb_strlen($str);
echo $nrchr; // 29
Clic pe raspunsul potrivit la intrebarea: "When it happened?".
On the 7th of July 1996 It is a quarter to 5. Nice weather.When it happened? On the 8th of August 2001.
- Cand s-a intamplat? Pe 8 August 2001.
Indicati raspunsul potrivit la intrebarea: "¿Cuando sucedió?".
Hace buen tiempo. En el 8 de Agosto de 2001 Son las tres menos cuarto.¿Cuando sucedió? En el 8 de Agosto de 2001.
- Cand s-a intamplat? Pe 8 August 2001.