logo

Crowdly

Browser

Додати до Chrome

Questions Bank (1229110 total)

A programmer, while writing some code, encountered the following error message on their screen:

"Line 73: Expecting a ; which is not found"

What type of error is this in their code?

0%
0%
0%
0%
Переглянути це питання

What are the benefits of object orientation?

100%
0%
0%
0%
0%
0%
Переглянути це питання

A comment in Java _________

0%
0%
0%
0%
Переглянути це питання

Which of the following is an IDE ? (You may select multiple responses)

0%
100%
100%
100%
Переглянути це питання

Based on your understanding, which of the following is the most important component in a computing system? (You may select multiple responses.)

0%
0%
0%
0%
0%
Переглянути це питання

Java is _________________.

0%
0%
0%
0%
Переглянути це питання
Choose the statement that best describes the purpose of the HTML table element.
0%
0%
100%
0%
Переглянути це питання
Assuming that the variable element refers to the DOM node representing a paragraph in an HTML document, which of the following options demonstrates correct use of the DOM API to change its background colour to grey?
0%
100%
0%
0%
Переглянути це питання

Consider the following DTD (Document Type Definition) schema rules.

<!ELEMENT customer (#PCDATA)>

<!ELEMENT item (#PCDATA)>

Along with these, which of the DTD schema rules below correctly defines an XML order element that may contain any number of item elements, but must always contain a customer element?

0%
0%
0%
0%
Переглянути це питання

Consider the following JavaScript code.

let y = 10;

while (y > 1) {

console.log("Looping...");

y = y - 2;

}

How many times will the text “Looping...” be output to the console when the code is executed?

0%
0%
0%
100%
Переглянути це питання