Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

WGU D276 Objective Assessment Review (Latest 2025/ 2026 Update) Web Development Foundations| Questions & Answers| Grade A| 100% Correct (Verified Solution)

Rating
-
Sold
2
Pages
44
Grade
A+
Uploaded on
15-03-2025
Written in
2024/2025

WGU D276 Objective Assessment Review (Latest 2025/ 2026 Update) Web Development Foundations| Questions & Answers| Grade A| 100% Correct (Verified Solution) QUESTION Which feature helps the user find content throughout a website? Answer: Sitemap QUESTION What is the text color for the statement, "This is sentence two"? Answer: Black QUESTION Which attribute is used by all form fields? Answer: value QUESTION Which unit of measurement sets the text size of the div element to be double that of the html element? Answer: rem QUESTION A website developer needs to create a website that looks suitable on mobile, tablet, and desktop devices. Which type of web design should the developer use? Answer: Responsive design QUESTION Which CSS properties are used to specify the amount of space between grid columns and rows? Answer: column-gap and row-gap QUESTION Which two units make the size of an element responsive to screen size? Answer: vw vh QUESTION Which CSS rule should be used to create three columns of equal width? Answer: div id="wrapper" div id="box1" class="box"Box 1/div div id="box2" class="box"Box 2/div div id="box3" class="box"Box 3/div div id="box4" class="box"Box 4/div div id="box5" class="box"Box 5/div div id="box6" class="box"Box 6/div /div QUESTION Which Bootstrap installation option avoids bundling Bootstrap with the source code of a website? Answer: CDN QUESTION How will the animation be rendered using this code? head titlePage Title/title style .box { width: 5rem; height: 5rem; background-color: red; animation-name: bgChange; animation-duration: 4s; animation-delay: 2s; animation-timing-function: ease; } @keyframes bgChange { from { background-color: blue; } to { background-color: purple; } } /style /head body div class="box"/div /body Answer: The animation will start red, change to blue then purple, then revert back to red. QUESTION Which transformation will the div exhibit on a mouse over? head titlePage Title/title style .box { width: 5rem; height: 5rem; background-color: red; animation-name: bgChange; animation-duration: 4s; animation-delay: 2s; animation-timing-function: ease; } @keyframes bgChange { from { background-color: blue; } to { background-color: purple; } } /style /head body div class="box"/div /body Answer: Rotate 45 degrees clockwise and change shape QUESTION Which Firefox Developer Tools tab displays how long a request took for each site resource type? Answer: Network QUESTION Which tool can be used to determine if a component has been rendered with the incorrect size and margin? Answer: Inspect the Element to check the rendered box model QUESTION Which Firefox Developer Tools tab is used to view and edit cookies on a site? Answer: Storage QUESTION Which Chrome DevTools tab is accessed to view logged JavaScript messages and run JavaScript? Answer: Console QUESTION Use the given text to answer the following question: The weather is hot. Which code snippets can be used to increase the weight of the text's font to indicate that it is important? Answer: pstrongThe weather is hot./strong/p pbThe weather is hot./b/p

Show more Read less
Institution
WGU D276
Course
WGU D276

Content preview

WGUl D276l Objectivel Assessmentl Reviewl
(Latestl 2025/l 2026l Update)l Webl
Developmentl Foundations|l Questionsl &l
Answers|l Gradel A|l 100%l Correctl
(Verifiedl Solution)

Q:l Whichl featurel helpsl thel userl findl contentl throughoutl al website?
Answer:
Sitemap

Q:l Whatl isl thel textl colorl forl thel statement,l "Thisl isl sentencel two"?
Answer:
Black

Q:l Whichl attributel isl usedl byl alll forml fields?
Answer:
value

Q:l Whichl unitl ofl measurementl setsl thel textl sizel ofl thel <div>l elementl tol bel doublel
thatl ofl thel <html>l element?
Answer:
rem

Q:l Al websitel developerl needsl tol createl al websitel thatl looksl suitablel onl mobile,l
tablet,l andl desktopl devices.

Whichl typel ofl webl designl shouldl thel developerl use?
Answer:
Responsivel design

Q:l Whichl CSSl propertiesl arel usedl tol specifyl thel amountl ofl spacel betweenl gridl
columnsl andl rows?
Answer:
column-gapl andl row-gap

,Q:l Whichl twol unitsl makel thel sizel ofl anl elementl responsivel tol screenl size?
Answer:
vw
vh

Q:l Whichl CSSl rulel shouldl bel usedl tol createl threel columnsl ofl equall width?
Answer:
<divl id="wrapper">
l <divl id="box1"l class="box">Boxl 1</div>
l <divl id="box2"l class="box">Boxl 2</div>
l <divl id="box3"l class="box">Boxl 3</div>
l <divl id="box4"l class="box">Boxl 4</div>
l <divl id="box5"l class="box">Boxl 5</div>
l <divl id="box6"l class="box">Boxl 6</div>
</div>

Q:l Whichl Bootstrapl installationl optionl avoidsl bundlingl Bootstrapl withl thel sourcel codel
ofl al website?
Answer:
CDN

Q:l Howl willl thel animationl bel renderedl usingl thisl code?
<head>
<title>Pagel Title</title>
<style>
l .boxl {
l width:l 5rem;
l height:l 5rem;
l background-color:l red;
l animation-name:l bgChange;
l animation-duration:l 4s;
l animation-delay:l 2s;
l animation-timing-function:l ease;
l}
l @keyframesl bgChangel {
l froml {
l background-color:l blue;
l}
l tol {

,l background-color:l purple;
l}
l}
</style>
</head>
<body>
l <divl class="box"></div>
</body>
Answer:
Thel animationl willl startl red,l changel tol bluel thenl purple,l thenl revertl backl tol red.

Q:l Whichl transformationl willl thel divl exhibitl onl al mousel over?
<head>
<title>Pagel Title</title>
<style>
l .boxl {
l width:l 5rem;
l height:l 5rem;
l background-color:l red;
l animation-name:l bgChange;
l animation-duration:l 4s;
l animation-delay:l 2s;
l animation-timing-function:l ease;
l}
l @keyframesl bgChangel {
l froml {
l background-color:l blue;
l}
l tol {
l background-color:l purple;
l}
l}
</style>
</head>
<body>
l <divl class="box"></div>
</body>
Answer:
Rotatel 45l degreesl clockwisel andl changel shape

, Q:l Whichl Firefoxl Developerl Toolsl tabl displaysl howl longl al requestl tookl forl eachl sitel
resourcel type?
Answer:
Network

Q:l Whichl tooll canl bel usedl tol determinel ifl al componentl hasl beenl renderedl withl thel
incorrectl sizel andl margin?
Answer:
Inspectl thel Elementl tol checkl thel renderedl boxl model

Q:l Whichl Firefoxl Developerl Toolsl tabl isl usedl tol viewl andl editl cookiesl onl al site?
Answer:
Storage

Q:l Whichl Chromel DevToolsl tabl isl accessedl tol viewl loggedl JavaScriptl messagesl andl
runl JavaScript?
Answer:
Console

Q:l Usel thel givenl textl tol answerl thel followingl question:l
Thel weatherl isl hot.l

Whichl codel snippetsl canl bel usedl tol increasel thel weightl ofl thel text'sl fontl tol indicatel
thatl itl isl important?
Answer:
<p><strong>Thel weatherl isl hot.</strong></p>
<p><b>Thel weatherl isl hot.</b></p>

Q:l Usel thel givenl textl tol answerl thel followingl question:l
Il lovel you.

l Whichl codel snippetl canl bel usedl tol stylel thel wordl "love"l inl bold?
Answer:
<p>Il <strong>love</strong>l you.</p>

Q:l Usel thel givenl textl tol answerl thel followingl question:
l Thel motherl toldl herl child,l "Getl readyl forl school."l

Written for

Institution
WGU D276
Course
WGU D276

Document information

Uploaded on
March 15, 2025
Number of pages
44
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

  • wgu d276 d276

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
nurse_steph Rasmussen College
View profile
Follow You need to be logged in order to follow users or courses
Sold
9815
Member since
5 year
Number of followers
5154
Documents
8162
Last sold
3 hours ago
Exams, Study guides, Reviews, Notes

All study solutions.

3.9

1744 reviews

5
892
4
305
3
263
2
81
1
203

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions