It is impossible to pass Microsoft 70-480 exam without any help in the short term. Come to Testking soon and find the most advanced, correct and guaranteed Microsoft 70-480 practice questions. You will get a surprising result by our Down to date Programming in HTML5 with JavaScript and CSS3 practice guides.
2021 Dec 70-480 latest exam
Q11. You are developing a customer web form that includes the following HTML. <label id="txtValue"X/label>
Information from the web form is submitted to a web service. The web service returns the following JSON object.
{
"Confirmation": "1234",
"FirstName": "John"
}
You need to display the Confirmation number from the JSON response in the txtValue label field.
Which JavaScript code segment should you use?
A. $("#txtValue").val = (JSONObject.Confirmation);
B. $("#txtValue").val (JSONObject.Confirmation);
C. $("#txtValue").text = (JSONObject.Confirmation);
D. $("#txtValue").text (JSONObject.Confirmation);
Answer: D
Q12. You are developing a page that includes text and an illustration. The web page resembles the following image.
You have the following requirements:
The illustration must be in the center of the page.
The text must flow around the left, right, top, and bottom of the illustration.
You need to ensure that the layout of the web page meets the requirements.
Which line of code should you use?
A. -ms-wrap-side: both;
B. -ms-wrap-side: clear;
C. -ms-wrap-side: maximum;
D. -ms-wrap-side: auto;
Answer: A
Q13. An HTML page contains no embedded JavaScript or CSS code. The body of the page contains only the following line of code.
<p id="test">test</p> A CSS style sheet must be applied dynamically. The style must visibly change the appearance of the paragraph on the page.
You need to apply a style the paragraph.
Which line of code should you use?
A. document.getElementById("test").style.border = "0";
B. document.getElementById("test").style.position = "static";
C. document.getElementById ("test").style.padding = "15px";
D. document.getElementById("test").style.top = "5px";
Answer: A
Q14. You are creating a web page that contains a canvas with text.
The page contains the following JavaScript code. (Line numbers are included for reference only.)
The text on the canvas must rotate 90 degrees when a user clicks a button on the page.
You need to ensure that the text rotates when the user clicks the button.
Which line of code should you add at line 03?
A. context.transform(90);
B. context.content.getRotation(90);
C. context.rotate(90);
D. context.content.rotate (90);
Answer: C
Q15. You are developing a customer web form that includes the following HTML.
<input id="txtValue" type="text" />
A customer must enter a valid age in the text box prior to submitting the form.
You need to add validation to the control.
Which code segment should you use?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: D
Updated 70-480 exam answers:
Q16. You develop an HTML5 webpage that contains the following HTML markup:
Users must receive a message after they click the Submit button if the text entered into the
favoriteColor text box is fewer than 2 characters or greater than 10 characters.
You need to implement the testLength() function.
Which code segment should you use?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: D
Q17. You are creating a JavaScript object that represents an employee.
You need to extend the Employee object by adding the GetPayroll() method.
You need to ensure that all future instances of the Employee object implement the GetPayroll() method.
Which code segment should you use?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: D
Q18. You are developing a customer web form that includes the following HTML input field.
<input id="txtValue"/>
If a customer enters a value in the input field, then it must be a numeric value.
You need to add validation to the input field.
Which HTML should you use?
A. <input id="txtValue" type-"text" pattern="/#" />
B. <input id="txtValue" type="number" />
C. <input id="txtVa!ue" type="integer" />
D. <input id="txtValue" type="text" required="required"/>
Answer: B
Q19. You develop an HTML5 webpage. You have the following HTML markup:
<input type="text" id="username" />
You need to prevent users from entering specific characters into the username field.
What should you do?
A. Using the keyup event, add an anonymous function that returns true when a specific character keycode value is determined.
B. Using the change event, add an anonymous function that returns true when a specific character keycode value is determined.
C. Using the keydown event, add an anonymous function that returns false when a specific character keycode value is determined.
D. Using the change event, add an anonymous function that returns false when a specific character keycode value is determined.
Answer: B
Q20. You are creating a web form that users will use to enter their personal information. The form includes the following HTML.
<body>
<table>
<tr>
<td>Item</td>
<td>Input</td>
<td>Current</td>
</tr>
<tr>
<td>First Name</td>
<td>
<input type=”text”/>
</td>
<td></td>
</tr>
<tr>
<td>Last Name</td>
<td>
<input type=”text”/>
</td>
<td></td>
</tr>
</table>
</body>
You have the following requirements:
. When a user enters an input box, the cell on the right must turn green.
. When a user leaves an input box, the cell on the right must turn white.
You need to create the web form to meet these requirements. Which code segment should you use?
A. Option A B. Option B
C. Option C
D. Option D
Answer: A