WGU
WGU (KVO1) Web Development Applications
Q1:
A javaScript programmer defines the following function:

What is the name of the function?
○
A
Function○
B
Number○
C
Return○
D
square
WGU
WGU (KVO1) Web Development Applications
Q2:
What is the purpose of cascading style sheets (CSSs)?
○
A
Structuring and describing web page content○
B
Providing functionality that was previously provided by plug-ins○
C
Changing the content of a web page dynamically○
D
Setting rules to define how page content looks when rendered
WGU
WGU (KVO1) Web Development Applications
Q3:
Which characters are used to enclose multiple statement in a function?
○
A
Spaces○
B
Parentheses○
C
Curly braces○
D
Semicotons
WGU
WGU (KVO1) Web Development Applications
Q4:
Which formats does the element in HTML5 support?
Choose 2 answers.
☐
A
WAV☐
B
WMA☐
C
Ogg☐
D
MPEG-4☐
E
M4A
WGU
WGU (KVO1) Web Development Applications
Q5:
A JavaScript programmer defines the following function:
```javascript
function square(number) {
return number * number;
}
```
Which keyword causes the function to send back a result?
○
A
return○
B
square○
C
function○
D
number