WGU C777 Objective Assessment Practice Exam (NEW UPDATED VERSION)
LATEST ACTUAL EXAM QUESTIONS AND CORRECT ANSWERS (VERIFIED
QUESTIONS AND ANSWERS)- GUARANTEED PASS A+ UPDATED 2026 2 VERSIONS
HTML5 — Structure, Semantics, Media (1–15)
1. What does HTML stand for?
A. HyperText Markup Language
B. HighText Machine Language
C. Hyper Training Markup Language
D. Hyperlinking Text Mark Language
Answer: A
Explanation: HTML is the standard markup language for creating web pages.
2. Which HTML5 element should be used to define the main navigation links of a site?
A. <footer>
B. <header>
C. <nav>
D. <section>
Answer: C
Explanation: The <nav> element is used for navigation links.
3. Which element is used for the most important heading on a page?
A. <h6>
B. <header>
C. <h1>
D. <title>
Answer: C
Explanation: <h1> denotes the highest-level heading.
4. How do you properly embed an image in HTML?
A. <img href="image.jpg">
B. <image src="image.jpg">
2026 2027 GRADED A+
,2|Page
C. <img src="image.jpg" alt="description">
D. <img url="image.jpg">
Answer: C
Explanation: Images require src and alt attributes for accessibility.
5. The <canvas> element in HTML5 is used for:
A. Displaying images only
B. Drawing graphics via scripting
C. Playing audio files
D. Linking stylesheets
Answer: B
Explanation: <canvas> enables dynamic graphics drawn with JavaScript.
6. What attribute is required for most form controls to be submitted?
A. class
B. id
C. name
D. alt
Answer: C
Explanation: The name attribute tells the server what to do with the input’s value.
7. Which tag is used for defining a video in HTML5?
A. <media>
B. <movie>
C. <video>
D. <embed>
Answer: C
Explanation: HTML5 supports video via <video>.
8. To make sure HTML code validates against standards, you should:
A. Avoid using JavaScript
B. Use a code validator
C. Only use inline CSS
D. Not include comments
Answer: B
Explanation: Validators check for standards compliance and errors.
2026 2027 GRADED A+
,3|Page
9. What is semantic HTML?
A. HTML that only uses CSS
B. HTML that uses elements for their meaning
C. HTML that loads faster
D. HTML that uses inline styles
Answer: B
Explanation: Semantic elements (like <section>, <article>) improve accessibility and
readability.
10. The <form> element must include which attribute to send data to a server?
A. method
B. content
C. display
D. setup
Answer: A
Explanation: method defines how the form data is sent.
11. Which input type gives a user a date selector?
A. text
B. password
C. date
D. number
Answer: C
Explanation: HTML5 supports type="date".
12. The <meta> charset declaration typically appears in the:
A. <footer>
B. <head>
C. <body>
D. <main>
Answer: B
Explanation: Encoding is defined in the <head>, usually <meta charset="UTF-8">.
13. Why include the alt attribute for an image?
A. For search engine optimization only
B. To provide alternative text for accessibility and screen readers
C. To link CSS
D. It is optional with no impact
2026 2027 GRADED A+
, 4|Page
Answer: B
Explanation: alt improves accessibility if an image cannot load.
14. Which HTML5 element represents content that is related to but separate from the main
content?
A. <aside>
B. <main>
C. <header>
D. <footer>
Answer: A
Explanation: <aside> often holds sidebars or additional info.
15. Which tag sets the document title shown in the browser’s tab?
A. <title>
B. <header>
C. <h1>
D. <meta>
Answer: A
Explanation: The <title> element defines the page title.
CSS3 — Styling & Layout (16–30)
16. What does CSS stand for?
A. Computer Style Sheets
B. Creative Style System
C. Cascading Style Sheets
D. Computational Styling Syntax
Answer: C
Explanation: CSS defines how HTML elements are displayed.
17. How do you select an element with the class main in CSS?
A. #main {}
B. .main {}
C. main {}
D. *main {}
Answer: B
Explanation: A period (.) selects classes.
2026 2027 GRADED A+