-
Scrieti verbul din paranteza la forma corecta pentru conditional de tip 1, in acord cu traducerea.
[
"If I ___ (to study) I will pass the exams. (Daca studiez voi trece examenele.)",
"If the sun shines , we will ___ (to walk) into garden. (Daca soarele straluceste ne vom plimba in gradina.)",
"If we travel to London, we ___ (to visit) the museums. (Daca ne deplasam la Londra, vom vizita muzeele.)",
"If my friend ___ (to come) , I will be very happy. (Daca prietenul meu vine, voi fi foarte fericit.)",
"She ___ (to sing) with me, if I want. (Ea va canta cu mine daca vreau.)",
"If he ___ (to ring up), tell him I am at home. (In caz ca telefoneaza, spune-i ca sunt acasa.)",
"Will you ___ (to read) this book if she buys it? (Vei citi aceasta carte daca ea o cumpara?)",
"I will not come if he ___ (to leave). (Nu voi veni daca el pleaca.)",
"Will you make a salad if we ___ (to pick) some fruits? (Vei face o salata, daca culegem niste fructe?)",
"If I leave the garden, I ___ (to plant) flowers. (Daca plec din gradina, nu voi planta flori.)",
"If we take the bus, we ___ (to arrive) in time. (Daca vom lua autobuzul, nu vom ajunge la timp.)",
"If you wait a minute, I ___ (to ask) my parents. (Daca astepti un minut, imi voi intreba parintii.)",
"If it ___ (to rain) , I will stay at home. (Daca ploua, voi sta acasa.)",
"If they ___ (to hurry), they will not catch the train. (Daca nu se grabesc, nu vor prinde trenul.)",
"If you come with me, I ___ (to do) the shopping with you. (Daca vii cu mine, voi face cumparaturile cu tine.)",
"If I am in Venice, I ___ (to rent) a boat. (Daca sunt in Venetia, voi inchiria o barca.)"
]
["study","walk","will visit","comes","will sing","should ring up","read","leaves","pick","will not plant","will not arrive","will ask","rains","do not hurry","will do","will rent"]
Un Test simplu in fiecare zi
HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Ce atribut face ca valoarea din caseta de text sa nu poata fi modificata de utilizator?
checked="checked" readonly="readonly" disabled="disabled"<input type="text" value="valoare-fixa" readonly="readonly" name="a_name" />
Ce proprietate CSS permite crearea de colturi rotunjite?
background-size border-size border-radius.class {
border:2px solid blue;
border-radius:1.2em;
}
Ce instructiune afiseaza o fereastra cu mesaj si butoane OK si Cancel?
indexOf() confirm() prompt()var ques = window.confirm("Rezultatul lui 0+0 este 0?");
if (ques) alert("Corect");
else alert("Incorect");
Indicati functia PHP care returneaza numarul cel mai mic dintr-o multime de numere.
floor() ceil() min()$min_nr = min(12, 8, 25, 13);
echo $min_nr; // 8
Alegeti verbul corect care trebuie in propozitia: "Its ears ... big".
are is hasIts ears are big.
- Urechile lui sunt mari.
Alegeti verbul corect care trebuie in propozitia: "Los niños ... deportistas"
soy son estáLos niños son deportistas.
- Copii sunt sportivi.