WGU C777 OBJECTIVE ASSESSMENT EXAM LATEST 2026-2027
ACTUAL EXAM WITH COMPLETE QUESTIONS AND CORRECT
DETAILED ANSWERS (100% VERIFIED ANSWERS) |ALREADY
GRADED A+| ||PROFESSOR VERIFIED|| ||BRANDNEW!!!||
How can you "comment out" a particular rule in a style sheet so
that it will be ignored when you link the style sheet to a Web
document?
A) Place the rule between the /* and */ characters.
B) Place the rule within curly braces.
C) Place the rule within semicolons.
D) Place the rule within quotation marks. - ANSWER-Place the
rule between the /* and */ characters.
How can you link an HTML document to an AppCache manifest
file named date.appcache?
A) By adding the appcache="date.appcache" attribute to the
<html> tag
B) By adding the manifest="date.appcache" attribute to the
<body> tag
C) By adding the manifest="date.appcache" attribute to the
<html> tag
,2|Page
D) By adding the appcache="date.appcache" attribute to the
<body> tag - ANSWER-By adding the manifest="date.appcache"
attribute to the <html> tag
jQuery's DOM-related methods provide a simpler way to access
and manipulate HTML elements and attributes. HTML elements
are selected and jQuery performs various actions on them using
the following code:
$(selector).action()
Which portion of this code specifies and accesses jQuery?
A) (selector)
B) action()
C) (selector).action()
D) $ - ANSWER-$
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
,3|Page
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
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
, 4|Page
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'));
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