-
Traduceti urmatoarele propozitii folosind Trecutul perfect (In limba romana fara diacritice).
Pentru negatie folositi forma prescurtata. Propozitiile interogative trebuie terminate cu semnul intrebarii (?).
[
"Terminasem cartea inainte sa vii tu.",
"El plecase deja azi dimineata",
"When Doris arrived the show had started",
"Mother had cooked the dinner by the time father came home.",
"Noi tocmai intrasem in clasa cand a sunat clopotelul.",
"Had she written for ten minutes when I arrived?",
"They hadn't lived here before you left.",
"Pasagerii au iesit indata ce se oprise trenul.",
"Had he eaten the icecreem when I slept?",
"Eu nu cantasem azi dupamiaza.",
"Zburase (neutru) dupa ce a terminat ea treaba?",
"Venisesi cand el a jucat tenis?"
]
["I had finished the book before you came","He had already left this morning","Cand Doris a sosit spectacolul incepuse","Mama gatise cina cand tata a venit acasa","We had just got into the classroom when the bell rang","Scrisese ea de zece minute cand eu am sosit?","Ei nu locuise aici inainte sa pleci","The passengers got out as soon as the train had stopped","Mancase el inghetata cand eu am dormit?","I hadn't sung this afternoon","It had flown after she finished the work?","Had you came when he played tennis?"]
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.