Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

WGU C777 FINAL OBJECTIVE ASSESSMENT EXAM BANK - C777 OA WEB DEVELOPMENT APPLICATIONS WITH 300+ QUESTIONS AND ANSWERS | LATEST UPDATED EXPERT VERIFIED SOLUTIONS | GUARANTEED PASS.

Beoordeling
-
Verkocht
-
Pagina's
105
Cijfer
A+
Geüpload op
13-01-2026
Geschreven in
2025/2026

WGU C777 OBJECTIVE ASSESSMENT EXAM BANK - C777 OA WEB DEVELOPMENT APPLICATIONS WITH 300+ QUESTIONS AND ANSWERS | LATEST UPDATED EXPERT VERIFIED SOLUTIONS | GUARANTEED PASS. You can use a Graphical User Interface (GUI) editor to create Web pages, or you can manually code them using HTML5 and CSS3. Why is it important to understand what goes on behind the GUI of a Web editor? A) You will be able to resize your Web pages to conform to the size of a device's screen. B) You will be able to troubleshoot code issues when the GUI Web editor fails. C) You will be able to create apps for mobile Web browsers. D) You will be able to change the GUI interface to more closely suit your coding habits. - ANSWER: You will be able to troubleshoot code issues when the GUI Web editor fails. Consider the following HTML code: video width="360" height="270" controls="controls" poster="" source src="4" type="video/mp4" / source src="" type="video/webm" / source src="" type="video/ogg" / Your browser does not support the HTML5 video element. /video 2 | P a g e What attribute prevents the first frame of the video from displaying while the video is downloading? A) The type attribute B) The src attribute C) The controls attribute D) The poster attribute - ANSWER: The poster attribute What does the W3C Markup Validation Service use to determine the HTML specification against which to validate your Web page markup code? A) The specified DTD in the nav section of your HTML page B) The specified DTD in the main section of your HTML page C) The !DOCTYPE declaration in the header section of your HTML page D) The specified DTD in the !DOCTYPE declaration on your HTML page - ANSWER: The specified DTD in the !DOCTYPE declaration on your HTML page What attribute should you add to the audio element if you want your audio to play over and over again without stopping? A) autoplay="autoplay" B) loop="autoplay" C) autoplay="loop" D) loop="loop" - ANSWER: loop="loop" 3 | P a g e How should you embed JavaScript code in an HTML5 document to which you are also linking an external JavaScript file? A) You must include the call to the external file and the code you want to embed in the same script statement. B) You must use separate script statements to call the external file and embed a separate script. C) You must place the script statement to call the external file in the body section of your document, and place the script statement containing the code you want to embed in the head section of your document. D) You must place the script statement to call the external file in the head section of your document, and place the script statement containing the code you want to embed in the body section of your document. - ANSWER: You must use separate script statements to call the external file and embed a separate script. HTML5 has introduced specific elements to structure Web pages. In which structure element should you include hypertext menus to access various pages of the Web site? A) The article structure element B) The aside structure element C) The nav structure element D) The section structure element - ANSWER: The nav structure element 4 | P a g e What is an advantage of using HTML5 APIs when designing Web pages for mobile devices? A) HTML5 APIs use fewer resources than a proprietary browser plug-in does, such as battery power and CPU memory. B) HTML5 APIs streamline the application of proprietary browser plug-ins when plug-ins are included in Web pages designed for mobile devices. C) HTML5 APIs make Web pages non-responsive to varying user screen sizes, thereby saving battery power and CPU memory. D) HTML5 APIs eliminate the need for Cascading Style Sheets, thereby saving battery power and CPU memory. - ANSWER: HTML5 APIs use fewer resources than a proprietary browser plug-in does, such as battery power and CPU memory. Code validation is the process of: A) creating code that responds to user screen size. B) accessing another point in a Web page or separate Web page. C) determining how to display HTML elements in your Web page. D) checking your code to verify that it complies with the syntax rules for your chosen standard. - ANSWER: checking your code to verify that it complies with the syntax rules for your chosen standard. Which attribute and value must you add to the audio element to incorporate default audio operations such as Play, Pause, Volume, etc.? A) controls="controls" 5 | P a g e B) controls="default" C) controls="audio" D) controls="yes" - ANSWER: controls="controls"

Meer zien Lees minder
Instelling
Vak

Voorbeeld van de inhoud

1|Page




WGU C777 OBJECTIVE ASSESSMENT EXAM BANK -
C777 OA WEB DEVELOPMENT APPLICATIONS WITH
300+ QUESTIONS AND ANSWERS | LATEST UPDATED
2026-2027 EXPERT VERIFIED SOLUTIONS |
GUARANTEED PASS.


You can use a Graphical User Interface (GUI) editor to create Web pages, or you
can manually code them using HTML5 and CSS3. Why is it important to
understand what goes on behind the GUI of a Web editor?
A) You will be able to resize your Web pages to conform to the size of a
device's screen.
B) You will be able to troubleshoot code issues when the GUI Web editor fails.
C) You will be able to create apps for mobile Web browsers.
D) You will be able to change the GUI interface to more closely suit your
coding habits. - ANSWER: You will be able to troubleshoot code issues
when the GUI Web editor fails.




Consider the following HTML code:
<video width="360" height="270" controls="controls" poster="image.png">
<source src="video.mp4" type="video/mp4" />
<source src="video.webm" type="video/webm" />
<source src="video.ogg" type="video/ogg" />
Your browser does not support the HTML5 video element.
</video>

,2|Page




What attribute prevents the first frame of the video from displaying while the video
is downloading? A) The type attribute
B) The src attribute
C) The controls attribute
D) The poster attribute - ANSWER: The poster attribute




What does the W3C Markup Validation Service use to determine the HTML
specification against which to validate your Web page markup code? A)
The specified DTD in the <nav> section of your HTML page
B) The specified DTD in the <main> section of your HTML page
C) The <!DOCTYPE> declaration in the <header> section of your HTML page


D) The specified DTD in the <!DOCTYPE> declaration on your HTML page -
ANSWER: The specified DTD in the <!DOCTYPE> declaration on your
HTML page




What attribute should you add to the <audio> element if you want your audio to
play over and over again without stopping?
A) autoplay="autoplay"
B) loop="autoplay"
C) autoplay="loop"
D) loop="loop" - ANSWER: loop="loop"

,3|Page




How should you embed JavaScript code in an HTML5 document to which you are
also linking an external JavaScript file?
A) You must include the call to the external file and the code you want to
embed in the same script statement.
B) You must use separate script statements to call the external file and embed a
separate script.
C) You must place the script statement to call the external file in the body
section of your document, and place the script statement containing the code you
want to embed in the head section of your document.
D) You must place the script statement to call the external file in the head
section of your document, and place the script statement containing the code you
want to embed in the body section of your document. - ANSWER: You must use
separate script statements to call the external file and embed a separate script.




HTML5 has introduced specific elements to structure Web pages. In which
structure element should you include hypertext menus to access various pages of
the Web site?
A) The <article> structure element
B) The <aside> structure element
C) The <nav> structure element
D) The <section> structure element - ANSWER: The <nav> structure element

, 4|Page




What is an advantage of using HTML5 APIs when designing Web pages for mobile
devices?
A) HTML5 APIs use fewer resources than a proprietary browser plug-in does,
such as battery power and CPU memory.
B) HTML5 APIs streamline the application of proprietary browser plug-ins
when plug-ins are included in Web pages designed for mobile devices.
C) HTML5 APIs make Web pages non-responsive to varying user screen sizes,
thereby saving battery power and CPU memory.


D) HTML5 APIs eliminate the need for Cascading Style Sheets, thereby saving
battery power and CPU memory. - ANSWER: HTML5 APIs use fewer resources
than a proprietary browser plug-in does, such as battery power and CPU memory.




Code validation is the process of:
A) creating code that responds to user screen size.
B) accessing another point in a Web page or separate Web page.
C) determining how to display HTML elements in your Web page.
D) checking your code to verify that it complies with the syntax rules for your
chosen standard. - ANSWER: checking your code to verify that it complies
with the syntax rules for your chosen standard.




Which attribute and value must you add to the <audio> element to incorporate
default audio operations such as Play, Pause, Volume, etc.?
A) controls="controls"

Geschreven voor

Instelling
Vak

Documentinformatie

Geüpload op
13 januari 2026
Aantal pagina's
105
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$18.49
Krijg toegang tot het volledige document:

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF


Ook beschikbaar in voordeelbundel

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
ExcelAcademia2026 Chamberlain College Of Nursing
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
2233
Lid sinds
4 jaar
Aantal volgers
1651
Documenten
9074
Laatst verkocht
12 uur geleden
EXCEL ACADEMIA TUTORS

At Excel Academia Tutoring, You will get solutions to all subjects in both assignments and major exams. Contact me for assistance. Good luck! Well-researched education materials for you. Expert in Nursing, Mathematics, Psychology, Biology etc. My Work has the Latest &amp; Updated Exam Solutions, Study Guides and Notes (100% Verified Solutions that Guarantee Success)

3.7

377 beoordelingen

5
156
4
80
3
70
2
23
1
48

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen