-
Scrieti la fiecare propozitie cuvantul corect dintre cele din paranteza patrata.
[
"The film was full of clever special ___. (Filmul a fost plin de efecte speciale inteligente.) [affects, effects]",
"I`m not sure ___ we will be able to attend the wedding. (Nu sunt sigur daca vom putea sa participam la nunta.) [whether, weather]",
"Several bricks in the garden wall have come ___. (Mai multe caramizi din zidul gradinii sau desprins.) [lose, loose]",
"I am totally ___ in alcohol; it is really dull. (Sunt total neinteresat de alcool; este intr-adevar plictisitor.) [disinterested, uninterested]",
"The old man gave a peaceful ___. (Batranul a dat o profetie pasnica.) [prophesy, prophecy]",
"We needed to order some more ___. (Avem nevoie sa comandam ceva mai multe articole de papetarie.) [stationery, stationary]",
"All the infirmity ___, now you are healthy. (Toata infirmitatea a trecut, acum esti sanatos.) [passed, past]",
"Singing in the shower is ___. (Cantatul sub dus este permis.) [aloud, allowed]",
"I am no longer ___ about my future. (Nu mai sunt neincrezator cu privire la viitorul meu.) [incredible, incredulous]",
"My friends are ___ to talk about the past. (Prietenii mei sunt reticenti (impotriva) sa vorbeasca despre trecut.) [loath, loathe]",
"He built a cottage on a ___ in the forest. (El a construit o cabana pe un teren din padure.) [sight, site, cite]",
"We ___ in a quiet and nice place. (Locuim (Traim) intr-un loc linistit si frumos.) [live, leave, leaves]",
"This is a reflection of ___ mind. (Aceasta este o reflectie a mintii tale.) [you`re, your]",
"My ___ likes the truth. (Fiului meu ii place adevarul.) [sun, son]",
"I ___ you that you are innocent and pure, a saint. (Te asigur ca esti inocent si pur, un sfant.) [assure, ensure, assert]"
]
["effects","whether","loose","uninterested","prophecy","stationery","passed","allowed","incredulous","loath","site","live","your","son","assure"]
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.