-
Scrieti verbul din paranteze la timpul trecut simplu (Past Tense), in acord cu subiectul.
[
"I ___ (to work)",
"You ___ (to stop)",
"We ___ (to walk)",
"He ___ (to jump)",
"They ___ (to sing)",
"She ___ (to read)",
"It ___ here (to be)",
"My brother ___ here. (to come)",
"The birds ___ fast. (to fly)",
"The painter ___ a brush. (to ask for)",
"You ___ at the theater. (to be)",
"He ___ two games. (to have)",
"She ___ good things. (to do)",
"I ___ a student. (to be)",
"You ___ a blue shirt. (to wear)",
"I ___ 2 hours. (to wait )"
]
["worked","stopped","walked","jumped","sang","read","was","came","flew","asked for","were","had","did","was","wore","waited"]
Un Test simplu in fiecare zi
HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Ce atribut poate fi utilizat pentru a adauga stiluri CSS direct in tag-ul HTML?
type style class<div style="width: 80%; border: 3px solid #888888;">Continut</div>
Care din metodele proprietatii CSS transform distorsioneaza elementul HTML la un anumit unghi (inclusiv continutul lui)?
translate() scale() skew()#un_id {
transform: skew(20deg, 25deg);
-ms-transform: skew(20deg, 25deg); /* IE 9 */
-webkit-transform: skew(20deg, 25deg); /* Safari and Chrome */
}
Clic pe functia care poate converti un obiect Date in Sir.
indexOf() toString() getDate()var rightnow = new Date();
alert( rightnow.toString() );
Care functie aplica o alta functie la elementele unui array?
array_merge() array_search() array_map()$arr = arra("abc", "<p>xyz</p>", "<em>PHP</em>");
// aplica functia strip_tags() ca sa stearga tag-urile HTML din fiecare element din %arr
$arr = array_map("strip_tags", $arr);
}
Cum se spune "sambata" in limba engleza?
Sunday Saturday MondayOn Saturday I visit my grandparents.
- Sambata imi vizitez bunicii.
Cum se spune "sambata" in limba spaniola?
domingo lunes sábadoSábado visito mis abuelos.
- Sambata imi vizitez bunicii.