exam questions

Exam 70-486 All Questions

View all questions & answers for the 70-486 exam

Exam 70-486 topic 1 question 173 discussion

Actual exam question from Microsoft's 70-486
Question #: 173
Topic #: 1
[All 70-486 Questions]

HOTSPOT -
You are developing an ASP.NET Core MVC web application.
The web application must support older web browsers and implemented JavaSript features. You must use a polyfill to support the JavaScript Promise object in all browsers.
You need to implement a built-in ASP.NET Core tag Helper to support polyfills.
How should you complete the markup? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
markcowell
4 years, 8 months ago
The primary use case for fallbacks in the Script Tag Helper is checking if a CDN is down and loading a local script instead. Another use case is you can use fallbacks to make it easy to polyfill missing JavaScript features in older browsers, while not having your users using the latest browsers take a network hit. <script asp-fallback-test="window.Promise" asp-fallback-src="https://unpkg.com/[email protected]"> </script>
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...