-
Recunoasteti si scrieti pentru fiecare propozitie Verbul modal ce-l contine.
[
"They shall come on time. (Trebuie sa vina la timp.)",
"You should write to him. (Ar trebui sa-i scrii.)",
"He ought be still at home. (S-ar cuveni sa fie inca acasa.)",
"Will you come with me? (Vrei sa vii cu mine?)",
"I would like to rest. (As vrea sa ma odihnesc.)",
"He used to swim in the Danube. (El obisnuia sa inoate in Dunare.)",
"My brother is to come in a week's time. (Fratele meu e gata sa vina intr-o saptamana.)",
"We dare to ask. (Noi am indraznit sa intrebam.)",
"Where shall we put the flower? (Unde sa punem floarea?)",
"They should be in the classroom by now. (Ei ar trebui sa fie in clasa deja.)",
"Would you help me? (Ai vrea sa ma ajuti?)",
"Dan ought to exercise more. (Dan s-ar cuveni sa exerseze mai mult.)",
"I used to walk a lot. (Obisnuiam sa ma plimb mult.)",
"I shall take care of everything for you. (Trebuie sa ma ocup de toate pentru tine.)",
"He will sit on the bed for hours. (Obisnueste [Sta] in pat ore-n sir.)"
]
["shall","should","ought","will","would","used to","is to","dare","shall","should","would","ought to","used to","shall","will"]
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.