WGU Web Development Applications (Web-Development-Applications) Free Practice Test
Question 1
What is a characteristic of the Document Object Model (DOM)?
Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 2
Given the following HTML:
```html
<div class="example">Example</div>
```
And the style:
```css
.example {
background: red;
}
```
Which line of code changes the background color of the `<div>` when the width is between 600 and 900 pixels or more than 1,100 pixels?
```html
<div class="example">Example</div>
```
And the style:
```css
.example {
background: red;
}
```
Which line of code changes the background color of the `<div>` when the width is between 600 and 900 pixels or more than 1,100 pixels?
Correct Answer: B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 3
Given the following CSS:

What is being configured?

What is being configured?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 4
Given the following HTML statement:
```html
<div class="example">Example</div>
```
Which CSS rule hides the `<div>` tag when the browser's width is 600 pixels wide or less?
```html
<div class="example">Example</div>
```
Which CSS rule hides the `<div>` tag when the browser's width is 600 pixels wide or less?
Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 5
Given the following CSS code:

Which portion is the rule?

Which portion is the rule?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 6
Which line of code creates a field that is displayed as a text box with up-and-down arrows and accepts a numeric value of less than 100?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).