WGU C777 Questions and Correct
Answers/ Latest Update / Already Graded
What is a characteristic of a web page with responsive design?
Ans: The ability to resize to the screen size
Which language provides dynamic content for a web page across all
browsers?
Ans: JavaScript
Which type of content should use an <aside>?
Ans: News feeds
Which element should a developer use for a bulleted list?
Ans: <ul>
What does an HTML5 code validator confirm about code?
Ans: It complies with a standard
A web developer needs to play an audio file endlessly.
All rights reserved © 2025/ 2026 |
, Page |2
The developer writes the following HTML code:
<audio>
<source src = "media/audio.ogg" type="audio/ogg" />
</audio>
Which attribute should this developer use?
Ans: loop
Which attribute is used to display an image inside a <video> element
before the video starts playing?
Ans: poster
Which style sheet code defines the 18-pixel Arial font for all level two
headers?
Ans: h2 {
font-family: Arial; font-size: 18px;
}
All rights reserved © 2025/ 2026 |
, Page |3
Given the following CSS code:
body {
color : white;
}
Which part of an element is affected by the color property?
Ans: Text
What should be added first when embedding CSS in a single web page
as an internal style sheet?
Ans: A <style> element to the <head> section
What is the first character a developer should use for an id selector in
CSS?
Ans: #
A developer has an image that needs to remain in the same place when
the page is scrolled.
All rights reserved © 2025/ 2026 |