-
Scrieti verbul din paranteze la Viitorul continuu, forma "will", in acord cu subiectul.
Ex.: "I ___ (to learn)" - will be learning
[
"I ___ (to write)",
"You ___ (to sit)",
"We ___ (to draw)",
"He ___ (to walk)",
"They ___ (to read)",
"She ___ (to plant)",
"I ___ over there (to go)",
"My father ___ here. (to come)",
"The whale ___ a lot. (to eat)",
"The crow ___ very high. (to fly)",
"You ___ at the school. (to learn)",
"He ___ two cups. (to have)",
"She ___ tomorrow. (to train)",
"I ___ rose. (to see)",
"You ___ a blue t-shirt. (to wear)",
"I ___ next week. (to teach )"
]
["will be writing","will be sitting","will be drawing","will be walking","will be reading","will be planting","will be going","will be coming","will be eating","will be flying","will be learning","will be having","will be training","will be seeing","will be wearing","will be teaching"]
Un Test simplu in fiecare zi
HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Care tip de <input> creaza un element cu data tip calendar?
type="text" type="date" type="button"<input type="date" name="set_date" value="2012-10-15" />
Ce proprietate CSS adauga efect de umbre la text?
font-style color text-shadowh2 {
text-shadow: 2px 3px 3px #a0a1fe;
}
Clic pe functia care adauga elemente noi la sfarsitul unui array.
pop() shift() push()var pags = ["lectii", "cursuri"];
pags.push("download", "tutoriale");
alert(pags[2]); // download
Ce functie aranjeaza un array in ordine crescatoare, dupa chei, mentinand corelatia dintre chei si valori?
asort() ksort() sort()$lang =[10=>"PHP", 20=>"JavaScript", "site"=>"coursesweb.net");
ksort($lang);
var_export($lang); // array ("site"=>"coursesweb.net", 10=>"PHP", 20=>"JavaScript")
La adjectivul "big" (mare), care este forma de Comparativ (mai mare)?
biggest biger biggerHe is bigger than his sister.
- El este mai mare decat sora lui.
Care este Comparativul adjectivului "grande" (mare)?
menos grande más grande el más grandeÉl es más grande que su hermana.
- El este mai mare decat sora lui.