-
Traduceti urmatoarele propozitii. (In limba romana fara diacritice.)
[
"Mama vine pe 15 august.",
"He graduated the hight school on July 15th 1995.",
"Here it's written the year two thousand and twelve.",
"Este 5 fix?",
"Este 5 fara 5.",
"George a plecat la 4 si un sfert.",
"El are o intalnire la 6 jumate.",
"Ea invata la ora 8.",
"I play till a quarter to 9.",
"We have the long break between ten minutes to ten and five past ten.",
"Cat e ceasul (ora)? Este 7 si jumatate.",
"The story starts at 8 o'clock sharp."
]
["My mother comes on August 15th","El a absolvit liceul pe 1 Iulie 1995","Aici este scris anul 2012","Is it 5 o'clock sharp?","It is 5 to 5","George left at quarter past 4","He has a meeting at half past 6","She learns at 8 o'clock","Ma joc pana la 9 fara un sfert","Avem pauza mare intre 10 fara 10 si 10 si 5","What time is it? It is half past 7","Povestea incepe la 8 fix"]
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.