-
Recunoasteti si scrieti adverbele din fiecare propozitie.
[
"She works efficiently. (Ea lucreaza eficient.)",
"She sings well. (Ea canta bine.)",
"Peter walks slowly to school. (Petru merge incet la scoala.)",
"Our teacher speaks English fluently. (Profesorul nostru vorbeste fluent limba engleza.)",
"My father drives carefuly. (Tatal meu conduce cu grija.)",
"Paul listens attentively. (Paul asculta cu atentie.)",
"Diana prepares quickly the food. (Diana pregateste rapid mancarea.)",
"She says that you work hard. (Ea spune ca muncesti din greu.)",
"The bird flew high in the sky. (Pasare a zburat sus (inalt) spre cer)",
"Your father came in first. (Tatal tau a intrat primul.)",
"He learns better this year. (El invata mai bine anul acesta.)",
"I allways speak optimistically. (Eu mereu vorbesc cu optimism.)"
]
["efficiently","well","slowly","fluently","carefuly","attentively","quickly","hard","high","first","better","optimistically"]
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.