ASSESSMENT EXAM GUIDE 2025 | GRADED A+ |
GUARANTEED PASS!!
A Web designer who assigns percentage values to elements using the HTML
structural elements is using what page-layout method?
- answer-Liquid
Anatoly is using the CSS position property to position block-level elements on his
Web pages. By specifying the "absolute" positioning scheme, Anatoly is ensuring
that the element to which he is applying the position property will:
- answer-float above the document and can be positioned as needed
Consider the following Cascading Style Sheets (CSS) rule:
body {color: #008080;}
Which is the "declaration" portion of this rule?
- answer-The portion inside the curly braces
Consider the following code:
<input list="continents" name="continent">
<datalist id="continents">
<option value="North America">
<option value="South America">
<option value="Europe">
<option value="Asia">
<option value="Africa">
<option value="Australia">
<option value="Antarctica">
</datalist>
Which two attributes' values must match each other in order to bind the <datalist>
element with the <input> element?
- answer-The list attribute and the id attribute
Consider the following code:
, <script>
var v1 = "Blue";
function f ()
{
this.v1 = "Green";
alert (this.v1);
}
f();
alert (v1);
</script>
What is the expected result when this script is run in the browser?
- answer-Two alert boxes, both displaying the message Green
Consider the following code:
<script>
var v1 = "Blue";
function f ()
{
this.v1 = "Green";
alert (this.v1);
}
f();
alert (v1);
</script>
What is the expected result when this script is run in the browser?
- answer-Two alert boxes, both displaying the message Green
Consider the following code:
<script>
var v1 = "Blue";
function f ()
{
v1 = "Green";
alert (v1);