-
Scrieti verbul din paranteze la timpul Viitor perfect continuu, in acord cu subiectul.
Ex.: "I ___ (to walk)" - will have been walking
[
"I ___ (to learn)",
"You ___ (to take on)",
"We ___ (to work)",
"He ___ (to read)",
"They ___ (to run)",
"She ___ (to put in)",
"I ___ here (to sit)",
"Your sisters ___ there. (to go)",
"The gorillas ___ a lot. (to eat)",
"The boys ___ every day. (to play)",
"You ___ at our school. (to teach)",
"He ___ a toy. (to buy)",
"She ___ for 2 hours. (to wait)",
"I ___ this morning. (to pray)",
"You ___ every evening. (to draw)",
"We ___ all week. (to travel)"
]
["will have been learning","will have been taking on","will have been working","will have been reading","will have been running","will have been putting in","will have been sitting","will have been going","will have been eating","will have been playing","will have been teaching","will have been buying","will have been waiting","will have been praying","will have been drawing","will have 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.