-
Scrieti pronumele (personale, reflexive, nehotarate, demonstrative, relative, interogative) din paranteze, in acord cu fiecare propozitie.
[
"___ is pretty. (ea)",
"___ was a deer. (el/ ea)",
"Give ___ the prize. (lui)",
"___ speak english. (tu)",
"___ are whise. (voi)",
"The earth is for ___. (toata lumea, fiecare)",
"___ go to mountain. (noi)",
"___ are our flowers. (acestea)",
"Play with ___! (noi)",
"Let`s buy ___ a car. (noi insine)",
"The girl ___ read the book is my sister. (care)",
"___ tree is a cherry-tree. (acel)",
"___ go home. (eu)",
"Have you seen ___? (pe ei)",
"This is ___ book. (a ta)"
]
["she","it","him","you","you","everyone","we","these","us","ourselves","who","that","I","them","your"]
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.