Is JavaScript case-sensitive?
Верно
Назовите корневой элемент данного XML-документа
<?xml version=»1.0″?>
<person>
<name>Andrew</name>
<age>18</age>
<document>Passport</document>
</person>
person
Назовите разновидности таблиц стилей
XSL, CSS
Which property is used to change the font of an element?
Both font-family and font can be used
Что из перечисленного является SGML-приложением?
HTML , XML
When using the padding property; are you allowed to use negative values?
Неверно
What does CSS stand for?
Cascading Style Sheets
Which event occurs when the user clicks on an HTML element?
onclick
What is the correct HTML element for inserting a line break?
<br>
Какой атрибут задает ветвь элементов иерархии XML-документа?
match
Как можно охарактеризовать взаимосвязь языков SGML, HTML, XML?
XML и HTML являются подмножествами (диалектами) языка SGML
Из представленных фрагментов XML кода выберете синтаксически правильный:
<Book><author>Иванов</author><title>Песнь о вещем Олеге</title></Book>
XPath — это?
язык определения частей и путей к элементам XML, позволяет найти требуемый элемент XML-документа;
Which operator is used to assign a value to a variable?
=
What is the correct syntax for referring to an external script called «xxx.js»?
<script src=»xxx.js»>
Что обозначает такая запись?
<!DOCTYPE INVENTORY
[
<!ELEMENT CATEGORY (CATNAME, BOOK*)>
]
>
каждая запись CATEGORY содержит одно поле CATNAME, после которого идет нуль или несколько вложенных записей BOOK
Чем является таблица XSL?
приложением XML
Where is the correct place to insert a JavaScript?
Both the <head> section and the <body> section are correct
нуль или большее количество появлений элемента а
а*
How do you make each word in a text start with a capital letter?
text-transform:capitalize
Which property is used to change the left margin of an element?
margin-left
What is the correct JavaScript syntax to change the content of the HTML element below?
<p id=»demo»>This is a demonstration.</p>
document.getElementById(«demo»).innerHTML = «Hello World!»;
JavaScript is the same as Java.
НЕВЕРНО!
How do you find the number with the highest value of x and y?
Math.max(x, y)
Какой символ ставится перед именем атрибута в xsl-таблице?
@
What is the correct way to write a JavaScript array?
var colors = [«red», «green», «blue»]
How does a FOR loop start?
for (i = 0; i <= 5; i++)
Which is the correct CSS syntax?
body {color: black;}
Which CSS property controls the text size?
Font-size
How do you select elements with class name «test»?
.test
xml-документ имеет структуру
<customers>
<customer>
<order>…</order>
</customer>
<customer>
<order>…</order>
</customer>
</customers>
Как отобразить содержание элемента order для всех клиентов?
c. <xsl:for-each select=»customers/customer»> <xsl:value-of select=»order» />
The external JavaScript file must contain the <script> tag.
Неверно
How do you declare a JavaScript variable?
var carName;
What is the correct HTML element for playing audio files?
<audio>
How do you insert a comment in a CSS file?
/* this is a comment */
В каком порядке выводятся данные при применении xsl-таблицы?
в порядке следования элементов value-of
What will the following code return: Boolean(10 > 9)
True
Что задается в атрибуте select элемента value-of?
Путь к элементу
xml-документ имеет структуру
<customers>
<customer>
…
</customer>
<customer>
…
<order>…</order>
</customer>
</customers>
Как правильно написать элемент xsl:for-each, чтобы отобразить информацию обо всех клиентах?
<xsl:for-each select=»customers/customer»>
How can you make a numbered list?
<ol>
Which HTML attribute is used to define inline styles?
Style
How do you write «Hello World» in an alert box?
alert(«Hello World»);
Какой элемент является корневым в XSL-таблице стилей?
xsl:stylesheet
The external JavaScript file must contain the <script> tag
Неверно
How do you create a function in JavaScript?
function myFunction()
How to write an IF statement in JavaScript?
if (i == 5)
В чем отличие документа XML от страницы HTML?
элементы не определяют способ своего отображения браузером
имена элементов создаются автором документа
What is the default value of the position property?
Static
How can you add a comment in a JavaScript?
//This is a comment
Which doctype is correct for HTML5?
<!DOCTYPE html>
Where in an HTML document is the correct place to refer to an external style sheet?
In the <head> section
How do you add a background color for all <h1> elements?
h1 {background-color:#FFFFFF;}
Укажите ошибочное утверждение
перед именем атрибута в xsl-таблице ставится символ «!»
What is the correct HTML for making a checkbox?
<input type=»checkbox»>
PCDATA — это?
Тип
Текст не являющийся разметкой
XPath — это?
язык определения частей и путей к элементам XML, позволяет найти требуемый элемент XML-документа;
How to write an IF statement for executing some code if «i» is NOT equal to 5?
if (i != 5)
How do you round the number 7.25, to the nearest integer?
Math.round(7.25)
How do you select all p elements inside a div element?
Div p
С помощью какого XSL-элемента можно получить значение узла?
xsl:value-of
Is this a «well formed» XML document?
<?xml version=»1.0″?>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don’t forget me this weekend!</body>
Неверно
Which HTML element is used to display a scalar measurement within a range?
<meter>
What is a correct way of referring to a stylesheet called «mystyle.xsl» ?
<?xml-stylesheet type=»text/xsl» href=»mystyle.xsl» ?>
Укажите верное утверждение
выражение фильтра заключается в квадратные скобки
What is the correct way to write a JavaScript array?
var colors = [«red», «green», «blue»]
Какие из перечисленных типов является основными типами узлов?
Text
Element
Document
What is the correct CSS syntax for making all the <p> elements bold?
p {font-weight:bold;}