Прв Колоквиум Flashcards

1
Q

Како поставуваме простор меѓу келиите во grid layout / How do you
put space between the cells in a grid layout?
a) grid-space;
b) space;
c) grid-padding;
d) gap;

A

d) gap;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

Дефинирање на поле за внес на password се врши / :
a) <password type=”text”/>
b) <input type=”text” />
c) <password type=”password”/>
d) <input type=”password”/>

A

d) <input type=”password”/>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Како се дефинира кој character set ќе се користи во HTML5 / How is
the document character set defined in HTML5?
a) <head http-equiv=”Content-Type” content=”text/html; charset=utf-8”/>
b) <meta charset=”UTF-8”/>
c) <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8”/>
d) <head charset=”UTF-8”/>

A

b) <meta charset=”UTF-8”/>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Кои од наведените е точно за сликата, ако знаеме дека lresources
содржи листа / Which of the following is correct for the picture, if we
know what lresources contain list? :
#lresources li{
list-style-image: url(“img/paper.gif”);
}
a) Ќе работи за li елементите низ целата страна / it will work for li
elements on the whole page
b) Ќе работи за неподредена листа / it will work for unordered list
c) Нема да работи за неподредена листа / it will not work for
unordered list
d) Нема да работи доколку листата е подредена(ol) / It will not work
on ordered list

A

b) Ќе работи за неподредена листа / it will work for unordered list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Како се креира grid кои има 3 редици: првата редица е висока
100px, втората – 80px, а третата ќе има автоматска висина / How do
you create a grid with 3 rows: the first row is 100px in height, the second
is 80px and the third one will have a automatically determined height?
a) grid-template-rows: 1: 100px, 2:80px, 3:auto;
b) grid-rows: 100px 80px auto;
c) template-rows: 100px 80px auto;
d) grid-template-rows: 100px 80px auto;

A

d) grid-template-rows: 100px 80px auto;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Елементите <img></img> и <video> ги споделуваат следниве атрибути /
The elements <img></img> and <video> shred those attributes?
a) src
b) width
c) controls
d) poster</video></video>

A

a) src
b) width

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Пресметајте ја специфичноста на следниот CSS селектор /
Calculate the specificity of the following CSS selector:
li.style #finki p.p2

A

1-2-2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Кои атрибути треба да и се постават на втората ќелија (cell 2) за да
го добие изгледот прикажан на сликата подолу:
СЛИКА1.
a) <td rowspan=”1” colspan=”2” align=”center-bottom”></td>
b) <td rowspan=”2” colspan=”2” align=”center” valign=”bottom”></td>
c) <td row=”2” col=”2” align=”middle” valign=”south”></td>
d) <td align=”center” valign=”bottom”></td>

A

b) <td rowspan=”2” colspan=”2” align=”center” valign=”bottom”></td>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Кои од следните HTML кодови се правилно напишани? / Which of
the following HTML codes are correct?
a) <table>

<tr><td>1</td><td>2</td></tr>

<tr><td>3</td><td>4</td></tr>

</table>
b) <table>

<tr><td>1</td><td>2</td>><td>3</td></tr>

<tr><td>4</td><td>5</td></tr>

</table>
c) <table>

<tr><td>1</td><td>2</td>><td>3</td></tr>

<tr><td collspan=”2”>4</td><td>5</td></tr>

</table>
d) <table>

<tr><td>1</td><td>2</td>
<tr><td>3</td><td>4</td>
</table>
</tr></tr>

A

a) <table>

<tr><td>1</td><td>2</td></tr>

<tr><td>3</td><td>4</td></tr>

</table>

b) <table>

<tr><td>1</td><td>2</td>><td>3</td></tr>

<tr><td>4</td><td>5</td></tr>

</table>

d) <table>

<tr><td>1</td><td>2</td>
<tr><td>3</td><td>4</td>
</table>
</tr></tr>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Со примена на следното својство на сите параграфи, се добива?:
p {
text-indent: 50px;
}
a) вовлекување на првиот ред 50px / indent the first line of the text for
50px
b) вовлекување на последниот ред 50px / indent the last line of the
text for 50px
c) вовлекување на помалку од 50px / indent for less than 50px
d) вовлекување на целиот текст 50px / indent the whole paragraph
text for 50px

A

a) вовлекување на првиот ред 50px / indent the first line of the text for
50px

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Кој текст ќе се прикаже доколку сликата не се вчита од некоја
причина?
a) display text
b) img text
c) src text
d) alt text

A

d) alt text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Како точно ќе ја дефинираме следната табела, ако знаеме дека
растојанието помеѓу внатрешната и надворешната линија е 10
пиксели / How to correctly define the table shown, if we know that the
distance between the inner and outer lines is 10px:
СЛИКА2
a) <table border=”1” cellspacing=”10”><tr>cell 1</tr></table>
b) <table border=”1” cellpadding=”10”><tr><td>cell 1</td></tr></table>
c) <table border=”1” cellpadding=”10”><td>cell 1</td></table>
d) <table border=”1” cellspacing=”10”><tr><td>cell 1</td></tr></table>

A

d) <table border=”1” cellspacing=”10”><tr><td>cell 1</td></tr></table>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Кои други вредности ги прима својството front-style, освен normal и
italic? / Which other values are supported for the property font-style,
besides normal and italic values?
a) oblique
b) inherit
c) sans-serif
d) special

A

a) oblique
b) inherit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Дали следново својство е правилно напишано / Is the following
property written correctly?
<audio src=”media/jazz.ogg” mode=”autoplay”></audio>
a) True
b) False

A

b) False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Кое од наведените својства е невалидно за flexbox / Which is not a
valid CSS property for flexbox?
a) justify-content
b) justify-items
c) align-items
d) align-content

A

b) justify-items

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q
A