-
Traduceti urmatoarele propozitii, folosind Trecutul perfect Continuu (In limba romana fara diacritice). Propozitiile interogative trebuie terminate cu semnul intrebarii (?).
[
"Eu scriam de doua ore.",
"Va plimbati de jumatate de ora?",
"Dorothy hadn't been working when you eaten.",
"Eu il vedeam in fiecare zi.",
"He had been writing poems for two years when I met him.",
"We had been mending the fence.",
"Ce faceati toata dimineata?",
"Nu se duceau la scoala.",
"Dan facea cumparaturi de trei ore.",
"Eu il asteptam de aseara cand a venit.",
"Se invartea motorul cand a plouat?",
"Se oprea in fiecare zi de cand l-am instalat."
]
["I had been writing for two hours","Had you been walking for half an hour?","Dorothy nu lucra cand tu ai mancat","I had been seeing him every day","Scria poezii de doi ani cand l-am intalnit.","Noi reparam gardul","What had you been doing all morning?","They hadn't been going to school","Dan had been shopping for three hours","I had been waiting for him since last night when he came","Had the engine been spinning when it rained?","It had been stopping every day since I installed it"]
Un Test simplu in fiecare zi
HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Care atribut specifica adresa unde sunt trimise datele din formular?
method action name<form action="script.php" method="post"> ... </form>
Ce proprietate CSS desparte cuvinte lungi, adaugand pe rand nou?
word-wrap line-height font-size#id {
width: 100px;
word-wrap: break-word;
}
Ce functie aranjeaza elementele din array in ordine alfabetica, bazat pe valorile lor?
pop() sort() shift()var tutorials = ["php", "html", "css", "flash"];
tutorials.sort();
alert(tutorials[0]); // css
Indicati functia care returneaza valoarea ultimului element din array.
current() next() end()$code =[10=>"Perl", 20=>"PHP", 21=>"Python", 30=>"JavaScript");
$last = end($code);
echo $last; // JavaScript
Alegeti verbul auxiliar corect care trebuie in propozitia: "Her plane ... just arrived".
have has doesHer plane has just arrived.
- Avionul ei tocmai a sosit.
Indicati forma corecta a verbului SER (a fi) in propozitia: "Vosotros ... muy simpáticos".
son soy soisVosotros sois muy simpáticos.
- Sunteti foarte simpatici.