-
Scrieti verbul din paranteze la timpul Prezent perfect (Present perfect), in acord cu subiectul.
[
"I ___ (to learn)",
"You ___ (to walk)",
"We ___ (to travel)",
"He ___ (to learn)",
"They ___ (to eat)",
"She ___ (to sing)",
"It ___ here (to be)",
"My aunt ___ a bus. (to drive)",
"The helicopters ___ high. (to fly)",
"Your uncle ___ a tree. (to paint)",
"You ___ here. (to work)",
"It ___ two plates. (to wash)",
"I ___ my homework. (to do)",
"They ___ some fruits. (to get)",
"You ___ the room. (to clean)",
"I ___ 2 stories. (to read )"
]
["have learned","have walked","have traveled","has learned","have eaten","has sung","has been","has driven","have flown","has painted","have worked","has washed","have done","have got","have cleaned","have read"]
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.