[2016-New] GreatExam Latest Microsoft 70-494 Exam Questions Free Downloading (31-45)

GreatExam dumps for 70-494 exam are written to the highest standards of technical accuracy, provided by our certified subject matter experts and published authors for development. We guarantee the best quality and accuracy of our products. We hope you pass the exams successfully with our practice test. With our Microsoft 70-494 practice test, you will pass your exam easily at the first attempt. You can also enjoy 365 days free update for your product.

QUESTION 31
Drag and Drop Question
You are developing a WCF service.
You need to implement transport security by using NTLM authentication and NetTcpBindings.
Which configuration values should you use? (To answer, drag the appropriate configuration values to the correct location or locations in the answer area. Each configuration value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

311
Answer:
312

QUESTION 32
You are building an ADO.NET Entity Framework application.
You need to validate the conceptual schema definition language (CSDL), store schema definition language (SSDL), and mapping specification language (MSL) files.
Which Entity Data Model tool can you use? (Each correct answer presents a complete solution. Choose all that apply.)

A.    ADO.NET Entity Data Model Designer
B.    EDM Generator (EdmGen.exe)
C.    Create Database Wizard
D.    Entity Data Model Wizard

Answer: AB
Explanation:
EdmGen.exe (http://msdn.microsoft.com/en-us/library/cc716721.aspx)
ADO.Net Entity Data Model Designer (http://msdn.microsoft.com/enus/library/vstudio/cc716685(v=vs.100).aspx)
The Entity Data Model wizard creates the .edmx files.
It does not validate the CSDL, SSDL or MSL files.
The Update Model wizard updates the .edmx file after changes have been made.
It does not validate the CSDL, SSDL or MSL files.

QUESTION 33
You are developing an order processing application that uses the ADO.NET Entity Framework against a SQL Server database. Lazy loading has been disabled.
The application displays orders and their associated order details.
Order details are filtered based on the category of the product in each order.
The Order class is shown below.
331
You need to return orders with their filtered list of order details included in a single round trip to the database.
Which code segment should you use?
332

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: C

QUESTION 34
You are developing an ASP.NET MVC application to be used on the Internet.
The environment uses Active Directory with delegation to access secure resources.
Users must be able to log on to the application to maintain their personal preferences.
You need to use the least amount of development effort to enable users to log on.
What should you do?

A.    Enable Windows authentication.
B.    Generate server SSL certificates and install them in IIS.
C.    Enable Digest authentication.
D.    Enable Forms authentication.

Answer: A

QUESTION 35
You are developing an ASP.NET MVC application that uses forms authentication.
Authentication credentials must be encrypted and secure.
You need to ensure that user credentials are persisted after users log on.
Where should you store the credentials? (Each correct answer presents a complete solution. Choose all that apply.)

A.    In TempData
B.    In Session
C.    In ViewData
D.    In a cookie

Answer: BD

QUESTION 36
You are developing an ASP.NET MVC application.
You need to authenticate clients by using NT LAN Manager (NTLM).
Which authentication method should you implement?

A.    Basic
B.    Windows
C.    Kerberos
D.    Forms

Answer: B
Explanation:
http://msdn.microsoft.com/en-us/library/aa292114(v=vs.71).aspx

QUESTION 37
Drag and Drop Question
You are configuring a web application for deployment.
You need to create a SetParameters.xml file to configure the IIS application pool.
You have the following markup:
371
Which configuration values should you include in Target 1 and Target 2 to complete the markup? (To answer, drag the appropriate configuration values to the correct targets in the answer area. Each configuration value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
372
Answer:
373

QUESTION 38
You develop an ASP.NET MVC application that is secured by using SSL.
You are ready to deploy the application to production.
The deployment package must include the installation of the SSL certificate.
You need to configure the deployment package to meet the requirement.
What should you do?

A.    Create a web publish pipeline target file with a custom web deploy target.
B.    In the Package/Publish settings of the project, select the All Files in this project option.
C.    Extend the CopyAllFilesToSingleFolder target in the project file.
D.    In the Build Events settings of the project, configure a pre-build event to include the SSL
certificate.

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

QUESTION 39
Hotspot Question
You are developing an ASP.NET MVC application that authenticates a user by using claims-based authentication.
The application must:
– Use Windows Identity Foundation 4.5.
– Support the Windows Azure Access Control Service.
You need to implement authentication.
How should you build the class constructor? (To answer, select the appropriate option from the drop-down list in the answer area.)
391
Answer:
392

QUESTION 40
Hotspot Question
You are developing an ASP.NET MVC application named ContosoWebApp.
You are ready to deploy the application to your production web server.
You need to import the publishing profile.
Which menu item should you use? (To answer, select the appropriate menu item in the answer area).
401
Answer:
402

QUESTION 41
You are developing a Microsoft Azure web application. The application will be deployed to 10 web role instances. A minimum of 8 running instances is needed to meet scaling requirements.
You need to configure the application so that upgrades are performed as quickly as possible, but do not violate scaling requirements.
How many upgrade domains should you use?

A.    1
B.    2
C.    5
D.    10

Answer: C

QUESTION 42
Hotspot Question
You are developing an ASP.NET MVC application.
You need to store membership information in a Microsoft SQL Server database.
How should you configure the membership provider? (To answer, select the appropriate options in the answer area.)
421

Answer:
422

QUESTION 43
You are developing a library to support multiple ASP.NET MVC web applications on a shared server.
The library provides implementations of security algorithms.
If a problem with any of the security algorithms is discovered, a new version of the library must be created and deployed.
Application downtime during the update must be minimized.
You need to ensure that the new version of the library will be used by all applications as soon as possible.
What should you do?

A.    Build the web applications and include the security assembly as an embedded resource.
When an update is needed, copy the new assembly to the bin directory for the application.
B.    Sign all assemblies in each application with the same key used to sign the security assembly.
When an update is needed, create a new key pair and re-sign all assemblies.
C.    Build the security assembly as a netmodule in a shared location.
Use the assembly linker to merge the netmodule into the assemblies for the application.
When an update is needed, update the netmodule in the shared location.
D.    Install the security assembly in the Global Assembly Cache (GAC).
When an update is needed, update the assembly in the GAC.

Answer: D

QUESTION 44
Drag and Drop Question
You are developing an ASP.NET MVC application that allows users to log on by using a third-party authenticator.
You need to configure Microsoft Azure Access Control Services and the application.
Which five actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)
441
Answer:
442

QUESTION 45
Hotspot Question
You are developing a WCF service.
The service must be interoperable with ASP.NET Web service clients. In addition, it must have a time-out of three minutes.
You need to configure the service to meet the requirements.
You have the following markup:
451
Which markup segments should you include in Target 1, Target 2, Target 3, Target 4, Target 5, Target 6 and Target 7 to complete the markup? (To answer, select the appropriate markup segment from each drop-down list in the answer area.)
452
Answer:

453

We offer standard exam questions of Microsoft 70-494 practice test. The standard exams are important if you have never taken a real exam. The accuracy of the Q&As are fully guaranteed and the number is enough to impact you passing the exam.

http://www.greatexam.com/70-494-exam-questions.html