Sie sind auf Seite 1von 40

Microsoft 70-486

Developing ASP.NET MVC 4 Web Applications


Version: 12.0
Microsoft 70-486 Exam
QUESTION NO: 1

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are in the process of developing an HTML5 website for a client.

You have been informed that the interface design must allow for the web page content to be
available to all browser types. The web page content should also be available to voice recognition
software, screen readers, and reading pens.

Solution: You transform HTML5 forms to XForms.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 2

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are in the process of developing an HTML5 website for a client.

You have been informed that the interface design must allow for the web page content to be
available to all browser types. The web page content should also be available to voice recognition
software, screen readers, and reading pens.

Solution: You make use of Resource Description Framework (RDF) to describe content elements
for the whole web page.
www.braindumps.com 2
Microsoft 70-486 Exam
Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 3

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are in the process of developing an HTML5 website for a client.

You have been informed that the interface design must allow for the web page content to be
available to all browser types. The web page content should also be available to voice recognition
software, screen readers, and reading pens.

Solution: You mark HTML5 content elements with Accessible Rich Internet Application (ARIA)
attributes.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

The aria-described by property may be used to attach descriptive information to one or more
elements through the use of an id reference list. The id reference list contains one or more unique
element ids.
www.braindumps.com 3
Microsoft 70-486 Exam
References: https://www.w3.org/TR/WCAG20-TECHS/ARIA1.html

QUESTION NO: 4

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are in the process of developing an HTML5 website for a client.

You have been informed that the interface design must allow for the web page content to be
available to all browser types. The web page content should also be available to voice recognition
software, screen readers, and reading pens.

Solution: You make sure that HTML5 content elements have valid and descriptive names.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

The aria-described by property may be used to attach descriptive information to one or more
elements through the use of an id reference list. The id reference list contains one or more unique
element ids.

References: https://www.w3.org/TR/WCAG20-TECHS/ARIA1.html

QUESTION NO: 5

Note: The question is included in a number of questions that depicts the identical set-up.
www.braindumps.com 4
Microsoft 70-486 Exam
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are in the process of developing an HTML5 website for a client.

You have been informed that the interface design must allow for the web page content to be
available to all browser types. The web page content should also be available to voice recognition
software, screen readers, and reading pens.

Solution: You enhance the pages by making use of HTML5 semantic markup elements.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

The aria-described by property may be used to attach descriptive information to one or more
elements through the use of an id reference list. The id reference list contains one or more unique
element ids.

References: https://www.w3.org/TR/WCAG20-TECHS/ARIA1.html

QUESTION NO: 6

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing a distributed application that stores a tiny amount of
unprotected global data. This data seldom changes.

The application must store a small amount of insecure global information that does not change
frequently.

www.braindumps.com 5
Microsoft 70-486 Exam
You need to make use of server-side state management to meet the application requirements.

Solution: You make use of the Session State option.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:
References: https://msdn.microsoft.com/en-us/library/azure/bf9xhdz4(v=vs.85).aspx

QUESTION NO: 7

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing a distributed application that stores a tiny amount of
unprotected global data. This data seldom changes.

The application must store a small amount of insecure global information that does not change
frequently.

You need to make use of server-side state management to meet the application requirements.

Solution: You make use of the Profile Properties option.

Does the solution meet the goal?

A.
Yes

B.
No
www.braindumps.com 6
Microsoft 70-486 Exam
Answer: B
Explanation:
References: https://msdn.microsoft.com/en-us/library/azure/bf9xhdz4(v=vs.85).aspx

QUESTION NO: 8

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing a distributed application that stores a tiny amount of
unprotected global data. This data seldom changes.

The application must store a small amount of insecure global information that does not change
frequently.

You need to make use of server-side state management to meet the application requirements.

Solution: You make use of the Application State option.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

Application state is a data repository available to all classes in an ASP.NET application.


Application state is stored in memory on the server and is faster than storing and retrieving
information in a database. Unlike session state, which is specific to a single user session,
application state applies to all users and all sessions. Therefore, application state is a useful place
to store small amounts of often-used data that does not change from one user to another. The
topics in this section provide information on how application state works and how to use it.

References: https://msdn.microsoft.com/en-us/library/azure/bf9xhdz4(v=vs.85).aspx

www.braindumps.com 7
Microsoft 70-486 Exam

QUESTION NO: 9

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing a distributed application that stores a tiny amount of
unprotected global data. This data seldom changes.

The application must store a small amount of insecure global information that does not change
frequently.

You need to make use of server-side state management to meet the application requirements.

Solution: You make use of the Database Support option.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

SQL Database provides a relational database management system for Windows Azure and is
based on SQL Server technology. With a SQL Database instance, you can easily provision and
deploy relational database solutions to the cloud, and take advantage of a distributed data center
that provides enterprise-class availability, scalability, and security with the benefits of built-in data
protection and self-healing.

References: https://msdn.microsoft.com/en-us/library/azure/bf9xhdz4(v=vs.85).aspx

QUESTION NO: 10

www.braindumps.com 8
Microsoft 70-486 Exam
Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are in the process of designing an ASP.NET MVC application. The application will be set up
on your company’s web farm.

A company policy requires that passwords stored in the web.config file meet the following
requirements:

They must be unreadable.

There format must not be easily decipherable.

You need to make sure that the passwords stored in the web.config file are encrypted.

Solution: You make use of Aspnet_merge.exe.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:
References: https://msdn.microsoft.com/en-us/library/bb397866.aspx

QUESTION NO: 11

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are in the process of designing an ASP.NET MVC application. The application will be set up
on your company’s web farm.

www.braindumps.com 9
Microsoft 70-486 Exam
A company policy requires that passwords stored in the web.config file meet the following
requirements:

They must be unreadable.

There format must not be easily decipherable.

You need to make sure that the passwords stored in the web.config file are encrypted.

Solution: You make use of Aspnet_regbrowsers.exe.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:
References: https://msdn.microsoft.com/en-us/library/ms229858.aspx

QUESTION NO: 12

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are in the process of designing an ASP.NET MVC application. The application will be set up
on your company’s web farm.

A company policy requires that passwords stored in the web.config file meet the following
requirements:

They must be unreadable.

There format must not be easily decipherable.

www.braindumps.com 10
Microsoft 70-486 Exam
You need to make sure that the passwords stored in the web.config file are encrypted.

Solution: You make use of Aspnet_compiler.exe.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:
References: https://msdn.microsoft.com/en-us/library/ms229863.aspx

QUESTION NO: 13

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are in the process of designing an ASP.NET MVC application. The application will be set up
on your company’s web farm.

A company policy requires that passwords stored in the web.config file meet the following
requirements:

They must be unreadable.

There format must not be easily decipherable.

You need to make sure that the passwords stored in the web.config file are encrypted.

Solution: You make use of Aspnet_regiis.exe.

Does the solution meet the goal?

www.braindumps.com 11
Microsoft 70-486 Exam
A.
Yes

B.
No

Answer: A
Explanation:
References: http://msdn.microsoft.com/en-us/library/zhhddkxy(v=vs.100).aspx

QUESTION NO: 14

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with designing an application for a client. The application will support
various cultures.

You need to make sure that the application stores localized content in satellite assemblies. You
are preparing to build the assemblies using the necessary tool.

Solution: You make use of the Mage.exe tool.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

The Manifest Generation and Editing Tool (Mage.exe) is a command-line tool that supports the
creation and editing of application and deployment manifests.

www.braindumps.com 12
Microsoft 70-486 Exam
QUESTION NO: 15

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with designing an application for a client. The application will support
various cultures.

You need to make sure that the application stores localized content in satellite assemblies. You
are preparing to build the assemblies using the necessary tool.

Solution: You make use of the Ildasm.exe tool.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 16

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with designing an application for a client. The application will support
various cultures.

You need to make sure that the application stores localized content in satellite assemblies. You
are preparing to build the assemblies using the necessary tool.

Solution: You make use of the Gacutil.exe tool.

www.braindumps.com 13
Microsoft 70-486 Exam
Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 17

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with designing an application for a client. The application will support
various cultures.

You need to make sure that the application stores localized content in satellite assemblies. You
are preparing to build the assemblies using the necessary tool.

Solution: You make use of the Al.exe tool.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

Use the Assembly Linker (Al.exe) to compile .resources files into satellite assemblies. Al.exe
creates an assembly from the .resources files that you specify. By definition, satellite assemblies
can only contain resources. They cannot contain any executable code.

www.braindumps.com 14
Microsoft 70-486 Exam
The following Al.exe command creates a satellite assembly for the application MyApp from the file
strings.de.resources.

al /t:lib /embed:strings.de.resources /culture:de /out:MyApp.resources.dll

References: https://technet.microsoft.com/en-us/library/21a15yht(v=vs.85)

QUESTION NO: 18

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have recently completed the development of an ASP.NET MVC application.

You are planning to deploy the application. As part of the deployment preparation, you are
required to create a deployment manifest using an appropriate command-line tool.

Solution: You make use of Ilasm.exe.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 19

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.
www.braindumps.com 15
Microsoft 70-486 Exam
You have recently completed the development of an ASP.NET MVC application.

You are planning to deploy the application. As part of the deployment preparation, you are
required to create a deployment manifest using an appropriate command-line tool.

Solution: You make use of Resgen.exe.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

Resgen.exe, the Resource File Generator, converts text (.txt or .restext) files and XML-based
resource format (.resx) files to common language runtime binary (.resources) files that can be
embedded in a runtime binary executable or compiled into satellite assemblies.

QUESTION NO: 20

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have recently completed the development of an ASP.NET MVC application.

You are planning to deploy the application. As part of the deployment preparation, you are
required to create a deployment manifest using an appropriate command-line tool.

Solution: You make use of Ngen.exe.

Does the solution meet the goal?

A.
Yes
www.braindumps.com 16
Microsoft 70-486 Exam
B.
No

Answer: B
Explanation:

The Native Image Generator (Ngen.exe) is a tool that improves the performance of managed
applications. Ngen.exe creates native images.

QUESTION NO: 21

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have recently completed the development of an ASP.NET MVC application.

You are planning to deploy the application. As part of the deployment preparation, you are
required to create a deployment manifest using an appropriate command-line tool.

Solution: You make use of Mage.exe.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

The Manifest Generation and Editing Tool (Mage.exe) is a command-line tool that supports the
creation and editing of application and deployment manifests.

References: http://www.devcurry.com/2011/02/important-net-framework-40-command-line.html

www.braindumps.com 17
Microsoft 70-486 Exam

QUESTION NO: 22

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing a data-orientated application for your company. The
application will allow for different storage schemas.

You want to map the application object model to the various storage schemas in such a way that
developers will be able to manipulate the data.

Solution: You make use of the DataReader ADO.NET data access strategy.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 23

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing a data-orientated application for your company. The
application will allow for different storage schemas.

You want to map the application object model to the various storage schemas in such a way that
developers will be able to manipulate the data.

www.braindumps.com 18
Microsoft 70-486 Exam
Solution: You make use of the Entity Framework ADO.NET data access strategy.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

QUESTION NO: 24

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing a data-orientated application for your company. The
application will allow for different storage schemas.

You want to map the application object model to the various storage schemas in such a way that
developers will be able to manipulate the data.

Solution: You make use of the DataAdapter ADO.NET data access strategy.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

www.braindumps.com 19
Microsoft 70-486 Exam
QUESTION NO: 25

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing a data-orientated application for your company. The
application will allow for different storage schemas.

You want to map the application object model to the various storage schemas in such a way that
developers will be able to manipulate the data.

Solution: You make use of the LINQ to SQL ADO.NET data access strategy.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

QUESTION NO: 26

You have been tasked with configure a website to exclude search engines from indexing parts of
the website.

You will be making use of the features of the IIS Search Engine Optimization Toolkit to achieve
your goal.

Which of the following is the feature of the IIS Search Engine Optimization Toolkit that you should
use?

A.
Sitemaps and Sitemap Indexes

www.braindumps.com 20
Microsoft 70-486 Exam
B.
Robots Exclusion

C.
User-Agent Exclusion

D.
Site Analysis

Answer: B
Explanation:

References: https://docs.microsoft.com/en-us/iis/extensions/iis-search-engine-optimization-
toolkit/using-the-iis-search-engine-optimization-toolkit#features

QUESTION NO: 27

You have been tasked with configure a website to exclude search engines from indexing parts of
the website.

You will be making use of the features of the IIS Search Engine Optimization Toolkit to achieve
your goal.

Which of the following is the file that you should create?

A.
robots.xml

B.
exclusions.xml

C.
robots.txt

D.
exclusions.xml

Answer: C
Explanation:

References: https://docs.microsoft.com/en-us/iis/extensions/iis-search-engine-optimization-
toolkit/using-the-iis-search-engine-optimization-toolkit#features

www.braindumps.com 21
Microsoft 70-486 Exam

QUESTION NO: 28

You have been tasked with configure a website to exclude search engines from indexing parts of
the website.

You will be making use of the features of the IIS Search Engine Optimization Toolkit to achieve
your goal.

Which of the following is the rule that you should add?

A.
An allow rule.

B.
A disallow rule.

C.
An exclusions rule.

D.
An inclusions rule.

Answer: B
Explanation:

References: https://docs.microsoft.com/en-us/iis/extensions/iis-search-engine-optimization-
toolkit/using-the-iis-search-engine-optimization-toolkit#features

QUESTION NO: 29

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing an enterprise-level Windows Communication Foundation
(WCF) application for a client. The client has informed you that user accounts will be migrated
from their current system to a new system.

www.braindumps.com 22
Microsoft 70-486 Exam
As a result of extensive role changes, new servers are being subjected to substantial pressure.

You have to make sure that that the application is able to deal with the pressure by redesigning
authorizations.

Solution: You configure the use of identity-based authorizations.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 30

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing an enterprise-level Windows Communication Foundation
(WCF) application for a client. The client has informed you that user accounts will be migrated
from their current system to a new system.

As a result of extensive role changes, new servers are being subjected to substantial pressure.

You have to make sure that that the application is able to deal with the pressure by redesigning
authorizations.

Solution: You configure the use of the resource-based impersonation/delegation model.

Does the solution meet the goal?

A.
Yes
www.braindumps.com 23
Microsoft 70-486 Exam
B.
No

Answer: B
Explanation:

QUESTION NO: 31

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing an enterprise-level Windows Communication Foundation
(WCF) application for a client. The client has informed you that user accounts will be migrated
from their current system to a new system.

As a result of extensive role changes, new servers are being subjected to substantial pressure.

You have to make sure that that the application is able to deal with the pressure by redesigning
authorizations.

Solution: You configure the use of role-based authorizations.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

Advanced Maturity: Authorization as a Service

In the advanced level of maturity for authorization, role storage and management is consolidated
and authorization itself is a service available to any solution that is service-enabled.

www.braindumps.com 24
Microsoft 70-486 Exam

QUESTION NO: 32

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with developing an enterprise-level Windows Communication Foundation
(WCF) application for a client. The client has informed you that user accounts will be migrated
from their current system to a new system.

As a result of extensive role changes, new servers are being subjected to substantial pressure.

You have to make sure that that the application is able to deal with the pressure by redesigning
authorizations.

Solution: You configure the use of the resource-based trusted subsystem model.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

The Trusted Subsystems Model

Once authorization is available as an autonomous service, the need for impersonation is


eliminated. Instead of assuming the identity of the user, the application uses its own credentials to
access services and resources, but it captures the user's identity and passes it as a parameter (or
token) to be used for authorization when a request is made. This model is referred to as the
trusted subsystem model, because the application acts as a trusted subsystem within the security
domain.

QUESTION NO: 33
www.braindumps.com 25
Microsoft 70-486 Exam
Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are designing an ASP.NET MVC application that includes a number of Razor views.

You need to make sure that the application executes different server-side code for both desktop
and mobile devices.

Your strategy must allow for mobile device support.

Solution: You make use of dissimilar controllers and views for desktop and mobile browsers. You
then render the views with the same Razor layout according to the type of device.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

How ASP.NET MVC applications can present mobile-specific pages

Since the Model-View-Controller pattern decouples application logic (in controllers) from
presentation logic (in views), you can choose from any of the following approaches to handling
mobile support in server-side code:

References: https://docs.microsoft.com/en-us/aspnet/whitepapers/add-mobile-pages-to-your-
aspnet-web-forms-mvc-application

QUESTION NO: 34

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

www.braindumps.com 26
Microsoft 70-486 Exam
You are designing an ASP.NET MVC application that includes a number of Razor views.

You need to make sure that the application executes different server-side code for both desktop
and mobile devices.

Your strategy must allow for mobile device support.

Solution: You create separate areas for desktop and mobile browsers. You then apply separate
controllers and views for each type.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

References: https://docs.microsoft.com/en-us/aspnet/whitepapers/add-mobile-pages-to-your-
aspnet-web-forms-mvc-application

QUESTION NO: 35

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are designing an ASP.NET MVC application that includes a number of Razor views.

You need to make sure that the application executes different server-side code for both desktop
and mobile devices.

Your strategy must allow for mobile device support.

Solution: You make use of dissimilar controllers and views for desktop and mobile browsers. You
then make use of Bootstrap framework to render the views.
www.braindumps.com 27
Microsoft 70-486 Exam
Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

How ASP.NET MVC applications can present mobile-specific pages

Since the Model-View-Controller pattern decouples application logic (in controllers) from
presentation logic (in views), you can choose from any of the following approaches to handling
mobile support in server-side code:

References: https://docs.microsoft.com/en-us/aspnet/whitepapers/add-mobile-pages-to-your-
aspnet-web-forms-mvc-application

QUESTION NO: 36

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You are designing an ASP.NET MVC application that includes a number of Razor views.

You need to make sure that the application executes different server-side code for both desktop
and mobile devices.

Your strategy must allow for mobile device support.

Solution: You make use of same controllers for desktop and mobile browsers. You then render the
views according to the type of device.

Does the solution meet the goal?

A.

www.braindumps.com 28
Microsoft 70-486 Exam
Yes

B.
No

Answer: A
Explanation:

How ASP.NET MVC applications can present mobile-specific pages

Since the Model-View-Controller pattern decouples application logic (in controllers) from
presentation logic (in views), you can choose from any of the following approaches to handling
mobile support in server-side code:

References: https://docs.microsoft.com/en-us/aspnet/whitepapers/add-mobile-pages-to-your-
aspnet-web-forms-mvc-application

QUESTION NO: 37

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with designing an ASP.NET Core MVC web application. The application
will be deployed to Microsoft Azure App Services Web App.

You have been informed that scheduled downtime is not allowed while deploying new features.

You want to make sure that the requirements are suitably met.

Solution: You configure a standalone Docker container for the Web App to run in.

Does the solution meet the goal?

A.
Yes

B.
No

www.braindumps.com 29
Microsoft 70-486 Exam
Answer: B
Explanation:

QUESTION NO: 38

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with designing an ASP.NET Core MVC web application. The application
will be deployed to Microsoft Azure App Services Web App.

You have been informed that scheduled downtime is not allowed while deploying new features.

You want to make sure that the requirements are suitably met.

Solution: You upgrade the App Service plan.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 39

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with designing an ASP.NET Core MVC web application. The application

www.braindumps.com 30
Microsoft 70-486 Exam
will be deployed to Microsoft Azure App Services Web App.

You have been informed that scheduled downtime is not allowed while deploying new features.

You want to make sure that the requirements are suitably met.

Solution: You include more upgrade domains in your strategy.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 40

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

You have been tasked with designing an ASP.NET Core MVC web application. The application
will be deployed to Microsoft Azure App Services Web App.

You have been informed that scheduled downtime is not allowed while deploying new features.

You want to make sure that the requirements are suitably met.

Solution: You include the use of deployment slots for deployments in your strategy.

Does the solution meet the goal?

A.
Yes

www.braindumps.com 31
Microsoft 70-486 Exam
B.
No

Answer: A
Explanation:

References: https://blogs.msdn.microsoft.com/mvpawardprogram/2017/05/16/deploy-app-azure-
app-service/

QUESTION NO: 41

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own
Microsoft Azure Active Directory (Azure AD).

Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.

You are currently implementing authentication for Azure API management.

Solution: You make use of Azure virtual networks.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

www.braindumps.com 32
Microsoft 70-486 Exam

QUESTION NO: 42

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own
Microsoft Azure Active Directory (Azure AD).

Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.

You are currently implementing authentication for Azure API management.

Solution: You make use of IPsec VPN.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 43

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own

www.braindumps.com 33
Microsoft 70-486 Exam
Microsoft Azure Active Directory (Azure AD).

Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.

You are currently implementing authentication for Azure API management.

Solution: You make use of Groups.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

Add an external Azure AD group

After you enable access for users in an Azure AD instance, you can add Azure AD groups in API
Management. Then, you can more easily manage the association of the developers in the group
with the desired products.

To configure an external Azure AD group, you must first configure the Azure AD instance on the
Identities tab by following the procedure in the previous section.

You add external Azure AD groups from the Groups tab of your API Management instance.

References: https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-aad

QUESTION NO: 44

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the

www.braindumps.com 34
Microsoft 70-486 Exam
requirements.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own
Microsoft Azure Active Directory (Azure AD).

Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.

You are currently configuring the API gateway.

Solution: You configure the use of Operations.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 45

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own
Microsoft Azure Active Directory (Azure AD).

Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.
www.braindumps.com 35
Microsoft 70-486 Exam
You are currently configuring the API gateway.

Solution: You configure the use of Transforms.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 46

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own
Microsoft Azure Active Directory (Azure AD).

Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.

You are currently configuring the API gateway.

Solution: You configure the use of Policies.

Does the solution meet the goal?

A.
Yes

www.braindumps.com 36
Microsoft 70-486 Exam
B.
No

Answer: A
Explanation:

Policies are applied inside the gateway which sits between the API consumer and the managed
API. The gateway receives all requests and usually forwards them unaltered to the underlying API.
However a policy can apply changes to both the inbound request and outbound response.

References: https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-
policies

QUESTION NO: 47

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own
Microsoft Azure Active Directory (Azure AD).

Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.

You are currently configuring the dashboard.

Which of the following is the option you should use?

A.
Azure Monitor

B.
Stream Analytics

C.
Application Insights

D.
www.braindumps.com 37
Microsoft 70-486 Exam
Log Analytics

Answer: C
Explanation:

Application Insights is an extensible Application Performance Management (APM) service for web
developers on multiple platforms. Use it to monitor your live web application.

QUESTION NO: 48

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own
Microsoft Azure Active Directory (Azure AD).

Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.

You are currently implementing the additional restrictions.

Solution: You make use of the Azure Key Vault.

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

www.braindumps.com 38
Microsoft 70-486 Exam
QUESTION NO: 49

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own
Microsoft Azure Active Directory (Azure AD).

Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.

You are currently implementing the additional restrictions.

Solution: You make use of Active Directory Domain Services (AD DS).

Does the solution meet the goal?

A.
Yes

B.
No

Answer: B
Explanation:

QUESTION NO: 50

Note: The question is included in a number of questions that depicts the identical set-up.
However, every question has a distinctive result. Establish if the solution satisfies the
requirements.

Your employer has acquired a subsidiary enterprise, whose employees make use of their own
Microsoft Azure Active Directory (Azure AD).

www.braindumps.com 39
Microsoft 70-486 Exam
Your employer has an application that includes a tailor-made API, which must be reconfigured to
allow application access for all users via the API. You have been tasked with making sure that
authentication for Azure API management is implemented, and that the API gateway is configured
for appropriate authorization. Also, metrics must be combined into a single dashboard and
additional restrictions must be implemented for all roles.

You are currently implementing the additional restrictions.

Solution: You make use of the Role-Based Access Control (RBAC).

Does the solution meet the goal?

A.
Yes

B.
No

Answer: A
Explanation:

Azure API Management relies on Azure Role-Based Access Control (RBAC) to enable fine-
grained access management for API Management services and entities (for example, APIs and
policies).

References: https://docs.microsoft.com/en-us/azure/api-management/api-management-role-
based-access-control

www.braindumps.com 40

Das könnte Ihnen auch gefallen