-
Scrieti verbul din paranteze la timpul Trecut perfect continuu, in acord cu subiectul.
Ex.: "I ___ (to learn)" - had been learning
[
"I ___ (to walk)",
"You ___ (to look for)",
"We ___ (to work)",
"He ___ (to write)",
"They ___ (to read)",
"She ___ (to crochet)",
"I ___ over there (to go)",
"Your sisters ___ here. (to play)",
"The whale ___ a lot. (to eat)",
"The cheetah ___ very fast. (to run)",
"You ___ in the street. (to laugh)",
"He ___ a book. (to buy)",
"She ___ for 3 hours. (to wait)",
"I ___ this morning. (to jog)",
"You ___ every evening. (to run)",
"We ___ all week. (to travel)"
]
["had been walking","had been looking for","had been working","had been writing","had been reading","had been crocheting","had been going","had been playing","had been eating","had been running","had been laughing","had been buying","had been waiting","had been jogging","had been running","had been traveling"]
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.