-
Identificati si scrieti la fiecare propozitie cuvintele ce reprezinta numerale (cardinal, ordinal, fractionar, colectiv, multiplicativ sau distributiv).
[
"I saw three pets. (Am vazut trei animale de casa.)",
"They have two children. (Ei au doi copii.)",
"The year has twelve months. (Anul are douasprezece luni.)",
"There are thirty days in June. (Sunt treizeci de zile in iunie.)",
"Jane is the second in our class. (Jane e a doua din clasa noastra.)",
"The tenth month is October. (A zecea luna este octombrie.)",
"Where is your third book? (Unde este a treia carte a ta?)",
"He finished the twelfth. (El a terminat al doisprezecelea.)",
"I eat one-third of the cake. (Mananc o treime din prajitura.)",
"He have read three-fourths of the lesson. (El a citit trei patrimi din lectie.)",
"They feed a yoke of oxen. (Ei hranesc o pereche de boi.)",
"He bought a dozen of eggs. (El a cumparat o duzina de oua.)",
"Paul got a double amount of cereals. (Paul a obtinut o cantitate dubla de cereale.)",
"We saw him three times today. (Noi l-am vazut de trei ori astazi.)",
"They come in one by one. (Ei intra unul cate unul.)"
]
["three","two","twelve","thirty","second","tenth","third","twelfth","one-third","three-fourths","yoke","dozen","double","three times","one by one"]
Un Test simplu in fiecare zi
HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Care tip de <input> creaza un element cu data tip calendar?
type="text" type="date" type="button"<input type="date" name="set_date" value="2012-10-15" />
Ce proprietate CSS adauga efect de umbre la text?
font-style color text-shadowh2 {
text-shadow: 2px 3px 3px #a0a1fe;
}
Clic pe functia care adauga elemente noi la sfarsitul unui array.
pop() shift() push()var pags = ["lectii", "cursuri"];
pags.push("download", "tutoriale");
alert(pags[2]); // download
Ce functie aranjeaza un array in ordine crescatoare, dupa chei, mentinand corelatia dintre chei si valori?
asort() ksort() sort()$lang =[10=>"PHP", 20=>"JavaScript", "site"=>"coursesweb.net");
ksort($lang);
var_export($lang); // array ("site"=>"coursesweb.net", 10=>"PHP", 20=>"JavaScript")
La adjectivul "big" (mare), care este forma de Comparativ (mai mare)?
biggest biger biggerHe is bigger than his sister.
- El este mai mare decat sora lui.
Care este Comparativul adjectivului "grande" (mare)?
menos grande más grande el más grandeÉl es más grande que su hermana.
- El este mai mare decat sora lui.