-
Treceti fiecare propozitie la Prezentul Continuu, forma specificata intre paranteze. Pentru ca raspunsul sa fie validat corect, la negativ folositi formele complete: "are not", "is not", iar propozitiile interogative terminati-le cu semnul intrebarii (?).
[
"I play here. (interogativ)",
"We applaud. (negativ)",
"You swim. (interogativ)",
"It jumps high. (interogativ)",
"He wear a green hat. (negativ)",
"They have many pets. (negativ)",
"She speaks english. (interogativ)",
"Pavel stops the bus. (negativ)",
"You go to the church. (interogativ)",
"I see a cow. (negativ)",
"The bears run fast. (negativ)",
"We make the meal. (interogativ)"
]
["Am I playing here?","We are not applauding","Are you swiming?","Is it jumping high?","He is not wearing green hat","They are not having many pets","Is she speaking english?","Pavel is not stopping the bus","Are you going to the church?","I am not seeing a cow","The bears are not running fast","Are we making the meal?"]
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.