|\ |\ |\ |\
Post-Assessment exam questions with |\ |\ |\ |\
answers
A Web designer who assigns percentage values to elements
|\ |\ |\ |\ |\ |\ |\ |\ |\
using the HTML structural elements is using what page-layout
|\ |\ |\ |\ |\ |\ |\ |\ |\
method? - CORRECT ANSWERS ✔✔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: - CORRECT
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\
ANSWERS ✔✔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? - CORRECT
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\
ANSWERS ✔✔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? -
|\ |\ |\ |\ |\ |\ |\ |\ |\
CORRECT ANSWERS ✔✔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? - CORRECT ANSWERS ✔✔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? - CORRECT ANSWERS ✔✔Two alert boxes, both
|\ |\ |\ |\ |\ |\ |\ |\
displaying the message Green |\ |\ |\
Consider the following code: |\ |\ |\