-
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
Ce tag se foloseste pentru a adauga liste in elemente <ul> si <ol>?
<dt> <dd> <li><ul>
<li>http://coursesweb.net/html/</li>
<li>http://www.marplo.net/html/</li>
</ul>
Care valoare a proprietatii "display" seteaza elementul ca tip bloc si afiseaza un punct in fata?
block list-item inline-block.some_class {
display: list-item;
}
Care instructiune JavaScript transforma un obiect in sir JSON.
JSON.parse() JSON.stringify eval()var obj = {
"courses": ["php", "javascript", "ajax"]
};
var jsonstr = JSON.stringify(obj);
alert(jsonstr); // {"courses":["php","javascript","ajax"]}
Indicati clasa PHP folosita pentru a lucra cu elemente HTML si XML in PHP.
stdClass PDO DOMDocument$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>';
$dochtml = new DOMDocument();
$dochtml->loadHTML($strhtml);
$elm = $dochtml->getElementById("dv1");
echo $elm->nodeValue; // CoursesWeb.net
Indicati forma de Prezent Continuu a verbului "to live" (a trai /a locui)
lived living liveingI`m living here.
- Traiesc /Locuiesc aici.
Care este forma de Gerunziu (sau Participiu Prezent) a verbului "vivir" (a trai /a locui)?
viviĆ³ vivido viviendoEstoy viviendo aquĆ.
- Traiesc /Locuiesc aici.