-
Completati urmatoarele propozitii cu prepozitiile care lipsesc, in acord cu traducerea din paranteze.
[
"The apple fell ___ the table. (Marul a cazut de pe masa.)",
"He came straight home ___ school. (El a venit direct acasa de la scoala.)",
"We meet ___ 8 o'clock. (Ne intalnim la ora 8.)",
"Let's meet ___ the garden. (Hai sa ne intalnim in gradina.)",
"I talked to him ___ noon. (Am vorbit cu el inainte de pranz.)",
"Ring me up ___ the meeting. (Suna-ma dupa intalnire.)",
"She stayed with us from January ___ April. (Ea a stat cu noi din ianuarie pana in aprilie.)",
"We worked ___ noon. (Noi am lucrat pana la pranz.)",
"I prayed ___ two hours. (M-am rugat timp de doua ore.)",
"We went to the mountains ___ the weekend. (Am mers la munte la sfarsit de saptamana.)",
"She spoke ___ confidence. (Ea a vorbit cu incredere.)",
"You are ___ my uncle. (Tu esti la fel ca unchiiul meu.)",
"He goes to work ___ bus. (El merge la munca cu autobuzul.)",
"I go to school ___ foot. (Eu merg la scoala pe jos.)",
"They talked ___ their childhood. (Au vorbit despre copilaria lor.)"
]
["off","from","at","in","before","after","to","until","for","over","with","like","by","on","about"]
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.