-
Scrieti verbul din paranteze la timpul viitor simplu, cu "will" (Future Tense), in acord cu subiectul.
[
"I ___ (to study)",
"You ___ (to start)",
"We ___ (to dance)",
"He ___ (to sing)",
"They ___ (to write)",
"She ___ (to cook)",
"It ___ here (to be)",
"My brother ___ tomorrow. (to leave)",
"The airplanes ___ fast. (to fly)",
"The painter ___ a brush. (to get)",
"You ___ in the park. (to run)",
"It ___ three windows. (to have)",
"She ___ my homework. (to do)",
"I ___ some nuts. (to eat)",
"You ___ a green shirt. (to wear)",
"I ___ 2 hours. (to wait )"
]
["will study","will start","will dance","will sing","will write","will cook","will be","will leave","will fly","will get","will run","will have","will do","will eat","will wear","will wait"]
Un Test simplu in fiecare zi
HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Ce tag HTML5 este indicat sa contina meniul cu link-uri de navigare in site?
<section> <nav> <article><nav><ul>
<li><a href="http://coursesweb.net/css/" title="CSS Course">CSS Course</a></li>
<li><a href="http://www.marplo.net/jocuri/" title="Flash Games">Flash Games</a></li>
</ul></nav>
Ce proprietate CSS muta elementrul in dreapta sau stanga de la locul unde e?
text-align clear float.some_class {
width: 30%;
float: left;
}
Clic pe metoda obiectului Math care rotunjeste numarul x descrescator la cel mai apropiat intreg.
Math.ceil(x) Math.abs(x) Math.floor(x)var num = 12.34567;
num = Math.floor(num);
alert(num); // 12
Indicati functia PHP care returneaza numarul de caractere dintr-un sir.
mb_strlen() count() stristr()$str = "sir cu caractere utf-8 åèö";
$nrchr = mb_strlen($str);
echo $nrchr; // 29
Clic pe raspunsul potrivit la intrebarea: "When it happened?".
On the 7th of July 1996 It is a quarter to 5. Nice weather.When it happened? On the 8th of August 2001.
- Cand s-a intamplat? Pe 8 August 2001.
Indicati raspunsul potrivit la intrebarea: "¿Cuando sucedió?".
Hace buen tiempo. En el 8 de Agosto de 2001 Son las tres menos cuarto.¿Cuando sucedió? En el 8 de Agosto de 2001.
- Cand s-a intamplat? Pe 8 August 2001.