-
Identificati cuvintele ce reprezinta adjective in urmatoarele propozitii:
[
"This is an easy test.",
"He was fat.",
"You are a good boy.",
"This ia a wonderful day.",
"She likes yellow apples.",
"The tomatoes are red.",
"They saw a very big elephant",
"You seem happy.",
"This is the main purpose of the meeting.",
"She is asleep.",
"His father is Canadian.",
"My brother is a young man.",
"Her hair is black.",
"The teacher has a round desk."
]
["easy","fat","good","wonderful","yellow","red","big","happy","main","asleep","canadian","young","black","round"]
Un Test simplu in fiecare zi
HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Care meta tag se foloseste pentru scurta descriere a paginii?
<meta content="..."> <meta description="..."> <meta http-equiv="..."><meta name="description" content="70-160 caractere ce descriu continutul paginii" />
Ce proprietate CSS opreste efectul dat de "float"?
clear text-align position#some_id {
clear: both;
}
Clic pe metoda ce creaza un array cu toate elementele din pagina cu un anumit nume de tag.
getElementsByName() getElementById() getElementsByTagName()var divs = document.getElementsByTagName("div");
var nr_divs = divs.length;
alert(nr_divs);
Indicati functia PHP ce returneaza numarul de elemente dintr-un array.
is_[) count() strlen()$arr =[7, 8, "abc", 10);
$nri = count($arr);
echo $nri; // 4
Indicati adverbul corespunzator adjectivului din paranteza in propozitia: "I live (happy)".
happly happily hapilyI live happily.
- Traiesc fericit (in mod fericit).
Indicati adverbul corespunzator adjectivului din paranteza in propozitia: "Vivo (feliz)".
felizamente felizmente felicesVivo felizmente.
- Traiesc fericit (cu fericire).