foundations (pnvo)exam
WGU PRE-ASSESSMENT: WEB
DEVELOPMENT FOUNDATIONS (PNVO)
NEWEST VERSION REAL 70 QUESTION AND
CORRECT DETAILED ANSWERS RATED A
GRADE.
A company needs the following content to display on its website:
one
two
ten
A website developer has created the following code:
<html>
<head>
<style>
div {
text-align: center;
border: 5px solid red;
}
</style>
</head><body><div id="one">one</div><div id="two">two</div>
<div id="ten">ten</div></body></html>
Which style rules should the developer include in their code so the content displays as
shown?
#one {
float: left;
}
#two {
clear: both;
,}
#ten {
float: right;
}
#one {
float: left;
}
#two {
float: none;
}
#ten {
float: right;
}
#one {
left: 100px;
}
#two {
float: none;
}
#ten {
right: 100px;
}
#one {
left: 100px;
}
#two {
clear: none;
}
#ten {
right: 100px;
} - ✔✔ANSW✔✔..1
#one {
float: left;
}
#two {
clear: both;
}
#ten {
float: right;
}
A website developer identifies an issue with a CSS property value taking precedence
over an element.
, Which Firefox Developer Tools tab should the developer access to review CSS
declaration precedence?
Inspector
Network
Console
Storage - ✔✔ANSW✔✔..Inspector
A website developer needs to create a website that looks suitable on mobile, tablet, and
desktop devices.
Which type of web design should the developer use?
Fixed design
Liquid design
Static design
Responsive design - ✔✔ANSW✔✔..Responsive design
A website developer needs to use a tag that does not apply a default format or style.
Which tag should the developer use?
<ul>
<h1>
<a>
<div> - ✔✔ANSW✔✔..<div>
A website developer uses the following code to build a table:
<table>
<tr>
<th> First Name </th>
<th> Last Name </th>
</tr><tr>
<td> John </td>
<td> Smith </td>
</tr>
</table>
Which editor should the developer use to create this content?
WYSIWYG
Text
GUI
Page - ✔✔ANSW✔✔..Text
se the given code snippet to answer the following question:
<a href="https://www.sample.com">Sample.com</a>
Which pseudo-class changes the background color of the link on mouse-over? -
✔✔ANSW✔✔..a:hover { background-color: yellow;}