WGU Web-Development-Applications Exam (page: 3)
WGU Web Development Applications (KVO1)
Updated on: 07-Feb-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:

Gopinadh 8/9/2023 4:05:00 AM

question number 2 is indicating you are giving proper questions. observe and change properly.
Anonymous


Santhi 1/1/2024 8:23:00 AM

passed today.40% questions were new.litwere case study,lots of new questions on afd,ratelimit,tm,lb,app gatway.got 2 set series of questions which are not present here.questions on azure cyclecloud, no.of vnet/vms required for implimentation,blueprints assignment/management group etc
INDIA


Raviraj Magadum 1/12/2024 11:39:00 AM

practice test
INDIA


sivaramakrishnan 7/27/2023 8:12:00 AM

want the dumps for emc content management server programming(cmsp)
Anonymous


Aderonke 10/23/2023 1:52:00 PM

brilliant and helpful
UNITED KINGDOM


Az 9/16/2023 2:43:00 PM

q75. azure files is pass
SWITZERLAND


ketty 11/9/2023 8:10:00 AM

very helpful
Anonymous


Sonail 5/2/2022 1:36:00 PM

thank you for these questions. it helped a lot.
UNITED STATES


Shariq 7/28/2023 8:00:00 AM

how do i get the h12-724 dumps
Anonymous


adi 10/30/2023 11:51:00 PM

nice data dumps
Anonymous


EDITH NCUBE 7/25/2023 7:28:00 AM

answers are correct
SOUTH AFRICA


Raja 6/20/2023 4:38:00 AM

good explanation
UNITED STATES


BigMouthDog 1/22/2022 8:17:00 PM

hi team just want to know if there is any update version of the exam 350-401
AUSTRALIA


francesco 10/30/2023 11:08:00 AM

helpful on 2017 scrum guide
EUROPEAN UNION


Amitabha Roy 10/5/2023 3:16:00 AM

planning to attempt for the exam.
Anonymous


Prem Yadav 7/29/2023 6:20:00 AM

pleaseee upload
INDIA


Ahmed Hashi 7/6/2023 5:40:00 PM

thanks ly so i have information cia
EUROPEAN UNION


mansi 5/31/2023 7:58:00 AM

hello team, i need sap qm dumps for practice
INDIA


Jamil aljamil 12/4/2023 4:47:00 AM

it’s good but not senatios based
UNITED KINGDOM


Cath 10/10/2023 10:19:00 AM

q.119 - the correct answer is b - they are not captured in an update set as theyre data.
VIET NAM


P 1/6/2024 11:22:00 AM

good matter
Anonymous


surya 7/30/2023 2:02:00 PM

please upload c_sacp_2308
CANADA


Sasuke 7/11/2023 10:30:00 PM

please upload the dump. thanks very much !!
Anonymous


V 7/4/2023 8:57:00 AM

good questions
UNITED STATES


TTB 8/22/2023 5:30:00 AM

hi, could you please update the latest dump version
Anonymous


T 7/28/2023 9:06:00 PM

this question is keep repeat : you are developing a sales application that will contain several azure cloud services and handle different components of a transaction. different cloud services will process customer orders, billing, payment, inventory, and shipping. you need to recommend a solution to enable the cloud services to asynchronously communicate transaction information by using xml messages. what should you include in the recommendation?
NEW ZEALAND


Gurgaon 9/28/2023 4:35:00 AM

great questions
UNITED STATES


wasif 10/11/2023 2:22:00 AM

its realy good
UNITED ARAB EMIRATES


Shubhra Rathi 8/26/2023 1:12:00 PM

oracle 1z0-1059-22 dumps
Anonymous


Leo 7/29/2023 8:48:00 AM

please share me the pdf..
INDIA


AbedRabbou Alaqabna 12/18/2023 3:10:00 AM

q50: which two functions can be used by an end user when pivoting an interactive report? the correct answer is a, c because we do not have rank in the function pivoting you can check in the apex app
GREECE


Rohan Limaye 12/30/2023 8:52:00 AM

best to practice
Anonymous


Aparajeeta 10/13/2023 2:42:00 PM

so far it is good
Anonymous


Vgf 7/20/2023 3:59:00 PM

please provide me the dump
Anonymous