-
Treceti fiecare propozitie la Viitorul Continuu, forma specificata intre paranteze. Pentru ca raspunsul sa fie validat corect, la negativ folositi forma prescurtata: "won't", iar propozitiile interogative terminati-le cu semnul intrebarii (?).
[
"I play tomorrow. (interogativ)",
"We laugh. (negativ)",
"You cook. (interogativ)",
"It jumps. (interogativ)",
"He wear a hat. (negativ)",
"They sell many roses. (negativ)",
"She studies english. (interogativ)",
"George drives the bus. (negativ)",
"You go to the library. (interogativ)",
"I watch the garden. (negativ)",
"Your dogs run. (negativ)",
"We make the project. (interogativ)"
]
["Will I be playing tomorrow?","We won't be laughing","Will you be cooking?","Will it be jumping?","He won't be wearing a hat","They won't be selling many roses","Will she be studying english?","George won't be driving the bus","Will you be going to the library?","I won't be watching the garden","Your dogs won't be running","Will we be making the project?"]
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.