-
Recunoasteti si scrieti prepozitiile din urmatoaarele propozitii.
[
"What photos are they looking at? (La ce fotografii se uita?)",
"This is a good firm to work with. (Aceasta este o firma buna cu care sa lucrezi.)",
"Many documents are kept within the drawer. (Multe documente sunt pastrate in sertar.)",
"He is in school. (E in scoala.)",
"I am at home. (Sunt acasa.)",
"There is a book beside the bed. (E o carte langa pat.)",
"Mary is standing by the window. (Maria este in picioare la fereastra.)",
"The bookcase is against the wall. (Biblioteca este rezemata [lipita] de perete.)",
"The dog is under the chair. (Cainele este sub pat.)",
"The cat is over the roof. (Pisica este pe acoperis.)",
"The book you need is underneath those papers. (Cartea de care aveti nevoie este sub acele hartii.)",
"There is a tree in front of our house. (E un copac in fata casei noastre.)",
"There was a dictionary amoung these books. (Era un dictionar printre aceste carti.)",
"They went into the house. (Ei au mers in casa.)",
"They sailed across the ocean. (Au navigat peste ocean.)",
"She came out of the room. (Ea a venit din camera.)"
]
["at","with","within","in","at","beside","by","against","under","over","underneath","in front of","amoung","into","across","out of"]
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.