-
Treceti fiecare propozitie la Trecutul perfect (unele propozitii sunt la alt timp, trebuie scrise la Trecut Perfect), forma specificata intre paranteze.
Pentru ca raspunsul sa fie validat corect, la negativ folositi forma prescurtata: "hadn't", iar propozitiile interogative terminati-le cu semnul intrebarii (?).
[
"I finish the work. (interogativ)",
"Do we pay it? (negativ)",
"You are looking for it. (interogativ)",
"It will start. (interogativ)",
"He makes a house. (negativ)",
"They read english tutorials. (negativ)",
"She will crochet a waistcoat. (interogativ)",
"Sim open the box. (negativ)",
"You are going to market. (interogativ)",
"I received a gift. (negativ)",
"The engine is stopping. (negativ)",
"We'll help the neighbors. (interogativ)"
]
["Had I finished the work?","We hadn't payed it","Had you looked for it?","Had it started?","He hadn't made a house","They hadn't read english tutorials","Had she crocheted a waistcoat?","Sim hadn't opened the box","Had you been to market?","I hadn't received a gift","The engine hadn't stopped","Had we helped the neighbors?"]
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.