-
Scrieti verbul din paranteze la timpul Prezent perfect (Present perfect), in acord cu subiectul.
[
"I ___ (to learn)",
"You ___ (to walk)",
"We ___ (to travel)",
"He ___ (to learn)",
"They ___ (to eat)",
"She ___ (to sing)",
"It ___ here (to be)",
"My aunt ___ a bus. (to drive)",
"The helicopters ___ high. (to fly)",
"Your uncle ___ a tree. (to paint)",
"You ___ here. (to work)",
"It ___ two plates. (to wash)",
"I ___ my homework. (to do)",
"They ___ some fruits. (to get)",
"You ___ the room. (to clean)",
"I ___ 2 stories. (to read )"
]
["have learned","have walked","have traveled","has learned","have eaten","has sung","has been","has driven","have flown","has painted","have worked","has washed","have done","have got","have cleaned","have read"]
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.