WGU Web-Development-Applications Exam (page: 3)
WGU Web Development Applications (KVO1)
Updated on: 24-Mar-2026

What should a developer increase to create space between a border and content?

  1. Margin
  2. Width
  3. Height
  4. Padding

Answer(s): D

Explanation:

Padding is the CSS property used to create space between the content of an element and its border.
It is an internal spacing within the element.

CSS Box Model:

Content: The innermost part, where text and images appear.

Padding: The space between the content and the border.

Border: The edge of the element.

Margin: The space outside the border, creating space between different elements.

Usage:

Padding:

div {

padding: 20px;

}

This code adds 20 pixels of padding on all sides of the content within the div element.


Reference:

MDN Web Docs - Padding

W3C CSS Box Model



Given the following markup:



Where does the image align in relation to the text?

  1. The top of The image aligns to the top of Hello World
  2. The lop of the image aligns the bottom of Hello world.
  3. The bottom of the Image aligns to the bottom of Hello World
  4. The bottom of the image aligns to the top of Held world.

Answer(s): C

Explanation:

The CSS property vertical-align: baseline aligns the baseline of the element with the baseline of its parent. For inline elements like images, the baseline alignment means that the bottom of the image aligns with the bottom of the text.

CSS vertical-align Property:

Baseline Alignment: Aligns the baseline of the element with the baseline of its parent.

Example:

<p>Hello World<img src="sample.jpg" style="vertical-align:baseline"></p>

Analysis:

The <img> element with vertical-align: baseline will align its bottom with the bottom of the surrounding text "Hello World".


Reference:

MDN Web Docs - vertical-align

W3C CSS Inline Layout Module Level 3



Which layout method causes images to render to small or too large in browser windows of different sizes?

  1. Fluid
  2. Fixed width
  3. Liquid
  4. Relative width

Answer(s): B

Explanation:

A fixed-width layout method specifies exact pixel values for widths. This approach does not adapt to different screen sizes, leading to images rendering too small or too large on various devices.

Fixed Width Layout:

Definition: Uses specific pixel values for the width of elements.

Example:

.container {

width: 800px;

}

Issues:

Lack of Flexibility: Does not scale with the size of the viewport, causing images and other elements to appear incorrectly sized on different screen sizes.

Comparison:

Fluid/Liquid: Adapts to the screen size using percentages or other relative units.

Relative Width: Also adapts using units like em or %.


Reference:

MDN Web Docs - Fixed vs. Fluid Layout

W3C CSS Flexible Box Layout Module Level 1

Using fixed-width layouts can result in poor user experience across different devices, highlighting the importance of responsive design principles.

Top of Form

Bottom of Form



Which CSS transformation method should a developer use to reposition an element horizontally on the 2-D plane?

  1. Skewx (angle)
  2. Scale (x,y)
  3. Translatex(n)
  4. Scalex(n)

Answer(s): C

Explanation:

The translateX(n) method in CSS is used to move an element horizontally on the 2-D plane by a specified distance. This transformation repositions the element along the X-axis.

translateX(n) Method: The translateX(n) function moves an element horizontally by n units. Positive values move the element to the right, while negative values move it to the left.

Usage Example:

.element {

transform: translateX(100px);

}

In this example, the element is moved 100 pixels to the right.

Properties:

n: This represents the distance to move the element. It can be specified in various units such as pixels (px), percentages (%), ems (em), etc.


Reference:

MDN Web Docs on transform

W3C CSS Transforms Module Level 1



Which 3D transform affects the distance between the z-plane and the user?

A)



B)



C)



D)

  1. Option A
  2. Option B
  3. Option C
  4. Option D

Answer(s): A

Explanation:

The perspective(n) method in CSS is used to affect the distance between the z-plane and the user, effectively changing the perspective depth of a 3D transformed element.

perspective(n) Method: The perspective function defines how far the element is from the user. It affects the appearance of the 3D transformed element, giving it a sense of depth.

Usage Example:

.container {

perspective: 1000px;

}

In this example, the perspective is set to 1000 pixels, which defines the distance between the z-plane and the user.

Properties:

n: This represents the perspective distance. The lower the value, the more pronounced the perspective effect.


Reference:

MDN Web Docs on perspective

W3C CSS Transforms Module Level 1



Given the following CSS:



What is being configured?

  1. Rendering to the canvas
  2. Processing in the browser
  3. Processing on a server

Answer(s): B

Explanation:

The given CSS configures properties that control the processing of animations directly in the browser.

CSS Animations: CSS animations are processed by the browser's rendering engine. The animations defined by CSS are handled client-side and do not require server-side processing.

Key Properties:



Give the following HTML code:



Which CSS property would make the corners of the div rounded?

  1. Border-collapse
  2. Border-style
  3. Border-width
  4. Border-radius

Answer(s): D

Explanation:

To make the corners of a div element rounded, the CSS property border-radius is used. This property allows you to define how rounded the corners should be by specifying a radius.

CSS border-radius Property:

Syntax:

div {

border-radius: 10px;

}

Description: The value can be in pixels (px), percentages (%), or other units. Higher values create more rounded corners.

Example:

Given HTML:

<div>Sample</div>

Given CSS:

div {

width: 100px;

height: 50px;

background-color: red;

border-radius: 10px;

}


Reference:

MDN Web Docs - border-radius

W3C CSS Backgrounds and Borders Module Level 3



Given the following CSS code:



How many seconds elapse before the font-size property begins to increase when a user hovers a mouse pointer over the delay element?

  1. 4
  2. 2
  3. 6
  4. 0

Answer(s): B

Explanation:

The CSS transition-delay property specifies how long to wait before starting a property transition. In the given CSS code, the transition-delay is set to 2s.

CSS Transition Properties:

transition-property: Specifies the CSS property to which the transition is applied (font-size in this case).

transition-duration: Specifies how long the transition takes (4s).

transition-delay: Specifies the delay before the transition starts (2s).

Example:

Given HTML:

<div id="delay">Hover over me</div>

Given CSS:

#delay {

font-size: 14px;

transition-property: font-size;

transition-duration: 4s;

transition-delay: 2s;

}

#delay:hover {

font-size: 36px;

}

When a user hovers over the element with id="delay", it will wait for 2 seconds before the transition effect on font-size starts.


Reference:

MDN Web Docs - transition-delay

W3C CSS Transitions



Viewing Page 3 of 18



Share your comments for WGU Web-Development-Applications exam with other users:

LOL what a joke 9/10/2023 9:09:00 AM

some of the answers are incorrect, i would be wary of using this until an admin goes back and reviews all the answers
UNITED STATES


Muhammad Rawish Siddiqui 12/9/2023 7:40:00 AM

question # 267: federated operating model is also correct.
SAUDI ARABIA


Mayar 9/22/2023 4:58:00 AM

its helpful alot.
Anonymous


Sandeep 7/25/2022 11:58:00 PM

the questiosn from this braindumps are same as in the real exam. my passing mark was 84%.
INDIA


Eman Sawalha 6/10/2023 6:09:00 AM

it is an exam that measures your understanding of cloud computing resources provided by aws. these resources are aligned under 6 categories: storage, compute, database, infrastructure, pricing and network. with all of the services and typees of services under each category
GREECE


Mars 11/16/2023 1:53:00 AM

good and very useful
TAIWAN PROVINCE OF CHINA


ronaldo7 10/24/2023 5:34:00 AM

i cleared the az-104 exam by scoring 930/1000 on the exam. it was all possible due to this platform as it provides premium quality service. thank you!
UNITED STATES


Palash Ghosh 9/11/2023 8:30:00 AM

easy questions
Anonymous


Noor 10/2/2023 7:48:00 AM

could you please upload ad0-127 dumps
INDIA


Kotesh 7/27/2023 2:30:00 AM

good content
Anonymous


Biswa 11/20/2023 9:07:00 AM

understanding about joins
Anonymous


Jimmy Lopez 8/25/2023 10:19:00 AM

please upload oracle cloud infrastructure 2023 foundations associate exam braindumps. thank you.
Anonymous


Lily 4/24/2023 10:50:00 PM

questions made studying easy and enjoyable, passed on the first try!
UNITED STATES


John 8/7/2023 12:12:00 AM

has anyone recently attended safe 6.0 exam? did you see any questions from here?
Anonymous


Big Dog 6/24/2023 4:47:00 PM

question 13 should be dhcp option 43, right?
UNITED STATES


B.Khan 4/19/2022 9:43:00 PM

the buy 1 get 1 is a great deal. so far i have only gone over exam. it looks promissing. i report back once i write my exam.
INDIA


Ganesh 12/24/2023 11:56:00 PM

is this dump good
Anonymous


Albin 10/13/2023 12:37:00 AM

good ................
EUROPEAN UNION


Passed 1/16/2022 9:40:00 AM

passed
GERMANY


Harsh 6/12/2023 1:43:00 PM

yes going good
Anonymous


Salesforce consultant 1/2/2024 1:32:00 PM

good questions for practice
FRANCE


Ridima 9/12/2023 4:18:00 AM

need dump and sap notes for c_s4cpr_2308 - sap certified application associate - sap s/4hana cloud, public edition - sourcing and procurement
Anonymous


Tanvi Rajput 10/6/2023 6:50:00 AM

question 11: d i personally feel some answers are wrong.
UNITED KINGDOM


Anil 7/18/2023 9:38:00 AM

nice questions
Anonymous


Chris 8/26/2023 1:10:00 AM

looking for c1000-158: ibm cloud technical advocate v4 questions
Anonymous


sachin 6/27/2023 1:22:00 PM

can you share the pdf
Anonymous


Blessious Phiri 8/13/2023 10:26:00 AM

admin ii is real technical stuff
Anonymous


Luis Manuel 7/13/2023 9:30:00 PM

could you post the link
UNITED STATES


vijendra 8/18/2023 7:54:00 AM

hello send me dumps
Anonymous


Simeneh 7/9/2023 8:46:00 AM

it is very nice
Anonymous


john 11/16/2023 5:13:00 PM

i gave the amazon dva-c02 tests today and passed. very helpful.
Anonymous


Tao 11/20/2023 8:53:00 AM

there is an incorrect word in the problem statement. for example, in question 1, there is the word "speci c". this is "specific. in the other question, there is the word "noti cation". this is "notification. these mistakes make this site difficult for me to use.
Anonymous


patricks 10/24/2023 6:02:00 AM

passed my az-120 certification exam today with 90% marks. studied using the dumps highly recommended to all.
Anonymous


Ananya 9/14/2023 5:17:00 AM

i need it, plz make it available
UNITED STATES