-
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 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.