100% tevredenheidsgarantie Direct beschikbaar na je betaling Lees online óf als PDF Geen vaste maandelijkse kosten 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

WGU C777 PROFESSIONAL ASSESSMENT 1 LATEST VERSION INCLUDING OVER 300 QUESTIONS AND THEIR CORRECT VERIFIED ANSWERS GRADED A+

Beoordeling
-
Verkocht
-
Pagina's
124
Cijfer
A+
Geüpload op
21-09-2025
Geschreven in
2025/2026

What is a characteristic of a web page with responsive design? - Answer The ability to resize to the screen size Which language provides dynamic content for a web page across all browsers? - Answer JavaScript Which type of content should use an <aside>? - Answer News feeds Which element should a developer use for a bulleted list? - Answer <ul> What does an HTML5 code validator confirm about code? - Answer It complies with a standard A web developer needs to play an audio file endlessly. The developer writes the following HTML code: <audio> <source src = "media/" type="audio/ogg" /> </audio> What video files are supported - Answer MP4 (mpeg4) WebM and OGG codec H.264 remember this What music files are supported - Answer MP3 WAV and OGG remember this What image files are supported - Answer jpeg, gif, svg, png, apng, png_ico, bmp, bmp_ico, Apig gifts a savefile to 3 pinguins and is bumped twice a .a #a - Answer anchor tag class ="a" id="a" remember this how to track visitors IP address - Answer Geolocation API remember this code to implement appChache for offline viewing - Answer <html manifest="che"> remember the html tag with the manifest remember this Does js run client or server side - Answer client html comment - Answer < ! ╌ text ╌> css comment - Answer / asterixis text asterixis / (quizlet has issues displaying * after / js comment - Answer // text until the end of the line Unassign a variable without deleting it - Answer = undefined a var can never truly be unset anymore = delete is removing it completely DOM is a representation of what code? - Answer HTML DOM is the concept of a web browser ... - Answer API DOM is made up from objects made in ... and modified with ... - Answer HTML / JavaScript Is DOM accessed by other tools like search engines or screen readers - Answer yes Is DOM the same as my HTML code - Answer Yes and no, the browser can fix your html when things are missing during the DOM creation Selector(".cta a").style is an example of: - Answer css inline style application reviewed with a js call remember this if you want to change thru js, use the same code and add the color (or margin, padding, background collor etc) Selector(".cta a").style color = "green" JavaScript uses what script standard - Answer ECMAScript Just remember the YMCA song and flip some letters Geolocation API - Answer location and ip Pointer Events API - Answer mouse movement tracking (hover or click) Canvas API - Answer var ctx = Context('2d'); Draw graphics outside of the HTML code and the user can interact with. Animation, game graphics, data visualization, photo manipulation, and real-time video processing Drag and Drop API - Answer A typical drag operation begins when a user selects a draggable element, drags the element to a droppable element, and then releases the dragged element. It must have the attribute draggable set to true in the HTML Drag/drop HTML code - Answer <img draggable="true"> Needs true or false <img draggable> does not work remember this get an element that has been marked as draggable - Answer const draggableElement = ElementById('draggable-element'); add dragstart listener to the element - Answer draggableEEventListener('dragstart', onElementDragStart); add drag data to the event - Answer function onElementDragStart(event) { TData('text/plain', 'draggable-element'); } History API - Answer Controls the URL and lets navigational changes appear without reloading the page and bookmark the specific state without a individual url aka use the browser back/forward buttons as navigation elements State({page: 1}, 'Page One', '?page=1') File System API - Answer access to the local users file system even without uploading it. It can only read it, not update it. input field email - Answer looks like a text field but has validation properties input field image - Answer click on the picture to submit the form input field search - Answer like text but line breaks are removed wen submitted input field url - Answer looks like text but has some validation client side form validation vs server side - Answer its a good practice to implement both. On the client side it helps to make the form more user friendly and faster, since a typo can be detected prior the form submission built in form validation pros/cons - Answer uses html form validation. best performance but less configuration remember this javaScript form validation pros/cons - Answer slower than built in but more customizable remember this Form Validation a - Answer matches one character that is a (nothing else) Form Validation abc - Answer matches abc. Not ab or abcd Form Validation ab?c - Answer Matches ac or abc. The character in front of ? is optional Form Validation ab*c - Answer matches a followed by any number of b and one c abbbbbbbc Form Validation a|b - Answer matches one character a or b but not ab Form Validation [Aa]pple - Answer matches Apple or apple remember this Form input validation to follow a string (code line example) that has 4 valid inputs: Banana, banana, Cherry, or cherry. Make sure you understand why only those four are valid. - Answer <input id="choose" name="i-like" required pattern="[Bb]anana|[Cc]herry" /> <input ????="number"/> - Answer type what is <fieldset> - Answer group several controls and labels within a web form. Regroup in semantic ways <form> <fieldset> <legend></legend> <input type="radio" id="S1" name="S1" value="S1"> <label for="S1">S1</label><br> <input type="radio" id="S2" name="S2" value="S2"> <label for="S2">S2</label><br> </fieldset> </form> what is <datalist> - Answer Input form to give the user different options (dropdown list) remember this what is <keygen> - Answer Create hidden keys for encryption within HTML using RSA. Not used anymore but still: remember this what is <output> - Answer makes use of the FOR attribute in froms. Shows the value calculated by entries remember this How to set a string or node as the children of a element - Answer E() i.e. (span); js code. () are after the element remember this Input validation Phone number - Answer pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" Input validation ipv4 - Answer pattern="d{1,3}.d{1,3}.d{1,3}.d{1,3}" do you see the difference between the phone example with [ ] and this example with to group the segments? Here I also used d for any digits instead of [0-9] remember this Input validation country code (3 letter code like USA CAN GER) - Answer pattern="[A-Za-z]{3} pattern understanding (?=^.{8,}$) - Answer there are at least 8 characters. See the , after 8? That means 8 or infinity ?=look, ^=start with, .=any character, 8,= 8 or more, $=end remember this pattern understanding (?=.*d) - Answer there is at least a digit remember this pattern understanding (?=.*W+) - Answer there is one or more "non word" characters (W is equivalent to [^a-zA-Z0-9_]) capitalization flips it to non. Like /D would be non digit pattern understanding (?![.n]) - Answer there is no space or newline !=no remember this pattern understanding (?=.*[A-Z]) - Answer there is at least an upper case letter remember this pattern understanding (?=.*[a-z]) - Answer there is at least a lower case letter remember this pattern understanding .*$ - Answer in a string of any characters comes at the end pattern understanding bonus round . ^ d D s x(?=y) ! - Answer . matches any single character from class ^ negated [^ 0-8] looks for a 9 ^ can also match the beginning of an input d any digit ** D any character ** s space x(?=y) lookahead xy is valid but xz not ** ! negative/not i.e x(?!y) xz is valid xy is not ** remember this ** confused with ^? ^[^A]

Meer zien Lees minder
Instelling
Vak











Oeps! We kunnen je document nu niet laden. Probeer het nog eens of neem contact op met support.

Geschreven voor

Vak

Documentinformatie

Geüpload op
21 september 2025
Aantal pagina's
124
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

Voorbeeld van de inhoud

WGU C777 PROFESSIONAL
ASSESSMENT 1 LATEST VERSION
INCLUDING OVER 300 QUESTIONS
AND THEIR CORRECT VERIFIED
ANSWERS GRADED A+



What is a characteristic of a web page with responsive design? - Answer The
ability to resize to the screen size


Which language provides dynamic content for a web page across all browsers? -
Answer JavaScript


Which type of content should use an <aside>? - Answer News feeds


Which element should a developer use for a bulleted list? - Answer <ul>


What does an HTML5 code validator confirm about code? - Answer It complies
with a standard


A web developer needs to play an audio file endlessly.

,The developer writes the following HTML code:


<audio>
<source src = "media/audio.ogg" type="audio/ogg" />
</audio>


What video files are supported - Answer MP4 (mpeg4) WebM and OGG
codec H.264
remember this


What music files are supported - Answer MP3 WAV and OGG
remember this


What image files are supported - Answer jpeg, gif, svg, png, apng, png_ico, bmp,
bmp_ico,


Apig gifts a savefile to 3 pinguins and is bumped twice


a
.a
#a - Answer anchor tag
class ="a"
id="a"
remember this

,how to track visitors IP address - Answer Geolocation API
remember this


code to implement appChache for offline viewing - Answer <html manifest="my-
webpage.appcache">
remember the html tag with the manifest
remember this


Does js run client or server side - Answer client


html comment - Answer < ! ╌ text ╌>


css comment - Answer / asterixis text asterixis /
(quizlet has issues displaying * after /


js comment - Answer // text until the end of the line


Unassign a variable without deleting it - Answer = undefined
a var can never truly be unset anymore
= delete is removing it completely


DOM is a representation of what code? - Answer HTML


DOM is the concept of a web browser ... - Answer API

, DOM is made up from objects made in ... and modified with ... - Answer HTML /
JavaScript


Is DOM accessed by other tools like search engines or screen readers - Answer yes


Is DOM the same as my HTML code - Answer Yes and no, the browser can fix
your html when things are missing during the DOM creation


document.querySelector(".cta a").style
is an example of: - Answer css inline style application reviewed with a js call
remember this


if you want to change thru js, use the same code and add the color (or margin,
padding, background collor etc)
document.querySelector(".cta a").style color = "green"


JavaScript uses what script standard - Answer ECMAScript


Just remember the YMCA song and flip some letters


Geolocation API - Answer location and ip


Pointer Events API - Answer mouse movement tracking (hover or click)
€12,14
Krijg toegang tot het volledige document:

100% tevredenheidsgarantie
Direct beschikbaar na je betaling
Lees online óf als PDF
Geen vaste maandelijkse kosten

Maak kennis met de verkoper
Seller avatar
mutindampatrick12

Maak kennis met de verkoper

Seller avatar
mutindampatrick12 Teachme2-tutor
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
0
Lid sinds
4 maanden
Aantal volgers
0
Documenten
41
Laatst verkocht
-

0,0

0 beoordelingen

5
0
4
0
3
0
2
0
1
0

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

Veelgestelde vragen