-
Scrieti verbul din paranteze la timpul Trecut perfect continuu, in acord cu subiectul.
Ex.: "I ___ (to learn)" - had been learning
[
"I ___ (to walk)",
"You ___ (to look for)",
"We ___ (to work)",
"He ___ (to write)",
"They ___ (to read)",
"She ___ (to crochet)",
"I ___ over there (to go)",
"Your sisters ___ here. (to play)",
"The whale ___ a lot. (to eat)",
"The cheetah ___ very fast. (to run)",
"You ___ in the street. (to laugh)",
"He ___ a book. (to buy)",
"She ___ for 3 hours. (to wait)",
"I ___ this morning. (to jog)",
"You ___ every evening. (to run)",
"We ___ all week. (to travel)"
]
["had been walking","had been looking for","had been working","had been writing","had been reading","had been crocheting","had been going","had been playing","had been eating","had been running","had been laughing","had been buying","had been waiting","had been jogging","had been running","had been traveling"]
Un Test simplu in fiecare zi
HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Ce tip de <input> creaza un camp de text care trebuie sa contina doar numere?
type="text" type="number" type="date"<input type="number" name="points" min="5" max="80" />
Ce proprietate CSS permite modificarea transparentei unui element?
font-style opacity color#id {
filter:alpha(opacity=40); /* for IE */
opacity:0.4;
}
Clic pe functia care formateaza un numar la o anumita lungime de caractere.
toPrecision() exp() toFixed()var num = 12.84567;
alert( num.toPrecision(3) ); // 12.8
Ce functie aranjeaza aleator elementele dintr-un array?
natsort() shuffle() sort()$lang =[10=>"PHP", 20=>"JavaScript", "site"=>"coursesweb.net");
shuffle($lang);
var_export($lang); // array (0=>"coursesweb.net", 1=>"PHP", 2=>"JavaScript")
Indicati Superlativul cuvantului "good" (bun).
better best goodestShe is the best in our class.
- Ea este cea mai buna din clasa noastra.
Care este Superlativul cuvantului "bueno" (bun)?
el mejor más bueno muy buenoÉl es el mejor en nuestra clase.
- El este cel mai bun din clasa noastra.