WGU C777 OBJECTIVE ASSESSMENT 2 LATEST
VERIFIED VERSIONS 2026/2027 (VERSION A AND B)
COMPLETE 400 QUESTIONS AND CORRECT
DETAILED ANSWERS (VERIFIED ANSWERS)
|ALREADY GRADED A+||NEWEST EXAM!!!
Why is it challenging to use images in your page designs
for mobile sites?
A) Because images are required for hyperlinks but
generally do not work well
B) Because of size constraints in device screens and
memory
C) Because plug-ins are required in order to view the
images
D) Because images do not provide essential content, only
visual appeal - ANSWER-Because of size constraints in
device screens and memory
What is the default security algorithm used with the
HTML5 <keygen> element?
A) RGBA
B) EC
C) DSA
D) RSA - ANSWER-RSA
,2|Page
Roshon wants to create an HTML5-compliant page that
has four sections: a section that contains the site
navigation links, top and bottom sections that contain a
logo and copyright information, and a section that contains
the main message of the page. Which elements should
Roshon use to create these sections?
A) The <header>, <footer>, <nav> and <aside> elements
B) The <header>, <footer>, <article> and <aside>
elements
C) The <main>, <nav>, <article> and <aside> elements
D) The <header>, <footer>, <nav> and <main> elements -
ANSWER-The <header>, <footer>, <nav> and <main>
elements
Consider the following code:
function dateTodayTomorrow(a, b)
{
a.concat(b);
return a.valueOf();
}
alert(dateTodayTomorrow('Wednesday','Thursday'));
,3|Page
What message will appear in the alert box when this script
is run in the browser?
A) WednesdayThursday
B) Wednesday
C) ThursdayWednesday
D) Thursday - ANSWER-Wednesday
Hugo has created an HTML document to which he has
attached an external CSS style sheet containing styles
that define all HTML elements in the document. Hugo
wants to apply styles to his home page only that will
override the style definitions of the attached style sheet.
How can he accomplish this?
A) Embed an internal style sheet.
B) Apply inline styles to each affected element.
C) Disassociate the HTML document from the external
CSS style sheet.
D) Attach to the HTML document another HTML document
containing the desired styles. - ANSWER-Embed an
internal style sheet.
Which History API method changes the URL in the
browser window by adding a URL to the history stack?
, 4|Page
A) history.replaceState()
B) history.changeState()
C) history.pullState()
D) history.pushState() - ANSWER-history.pushState()
You want to be able to ask your site users for a password,
then store the user's input so that the password can be
used as needed to execute various functions within the
application. In which of the following should the user's
input be stored?
A) An event
B) A property
C) A variable
D) An operand - ANSWER-A variable
Regarding HTML5 forms, how are HTML5 input types
displayed in various browsers?
A) They are not supported and should not be used.
B) They display the same as in older versions.
C) They display the same in all browsers.
D) They may display differently in various browsers. -
ANSWER-They may display differently in various
browsers.