getcertified4sure.com

Nov 2021 updated: Ucertify Microsoft 70-357 practice question 31-36




Ucertify 70-357 Questions are updated and all 70-357 answers are verified by experts. Once you have completely prepared with our 70-357 exam prep kits you will be ready for the real 70-357 exam without a problem. We have Update Microsoft 70-357 dumps study guide. PASSED 70-357 First attempt! Here What I Did.

Q31. You are developing a Universal Windows Platform (UWP) app.

You have the following XAML code.

You need to localize the app so that it displays “Bonjour” if the current language in Windows is set to French.

Which four 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.

Select and Place:

Answer: 

Explanation: 

Box 1, Box 2:

The localized Resources.resw files should be put into subfolders of a folder named Strings.

Box 3:

The Resources.resw files contain localized text.

Box 4:

In Visual Studio you can set “Build Action” for a project item to ‘Resource’ or ‘Embedded Resource’ A “.resx” file is a special kind of embedded resource.

https://msdn.microsoft.com/library/aa992030(v=vs.100).aspx


Q32. You are developing a Universal Windows Platform (UWP) app that will be published to the Microsoft Store.

You need to change the name of the app that will be displayed in the Store.

Which file should you modify?

A. App.xaml.cs

B. Package.appxmanifest

C. AssemblyInfo.cs

D. Project.json

Answer: B

Explanation: 

The removableStorage capability provides programmatic access to files on removable storage, like USB keys and external hard drives, filtered to the file-type associations declared in the package manifest

Package.appxmanifest.

Note: Capabilities must be declared in your Universal Windows Platform (UWP) app’s package manifest,

Package.appxmanifest, to access certain API or resources like pictures, music, or devices like the camera, the microphone, or removable storage devices.

The package manifest, Package.appxmanifest, is an XML document that contains the info the system needs to deploy, display, or update a Windows app.

https://msdn.microsoft.com/en-us/library/windows/apps/mt270968.aspx


Q33. DRAG DROP

You are developing a Universal Windows Platform (UWP) app named App1.

App1 can be started by using Cortana. To start the app, users must be able to say “App1 play my music” or “App1 play music”.

You need to write the Voice Command Definition (VCD) file to meet the requirement.

How should you complete the code? To answer, drag the appropriate code elements to the correct targets.

Each element 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.

Select and Place:

Answer: 

Explanation: 

To specify where the app name can be spoken in the voice command.

The ListenFor element has a RequireAppName attribute that specifies where the app name can appear in the voice command. The BeforePhrase indicates that users must say your app name before the command phrase.

Example: Here, Cortana listens for “Adventure Works when is my trip to Las Vegas”.

<ListenFor RequireAppName=”BeforePhrase”> when is [my] trip to {destination} </ListenFor>

https://msdn.microsoft.com/en-us/library/windows/apps/mt185616.aspx


Q34. DRAG DROP

You are building a Universal Windows Platform (UWP) app.

You need to ensure that users can start the app by using voice command in Cortana.

Which four 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.

Select and Place:

Answer: 

Explanation: 

These are the basic steps to add voice-command functionality and integrate Cortana with your app using

speech or keyboard input:

1. Create a VCD file. This is an XML document that defines all the spoken commands that the user can say to initiate actions or invoke commands when activating your app.

2. Register the command sets in the VCD file when the app is launched.

3. Handle the activation-by-voice-command, navigation within the app, and execution of the command.

Box 1: Create a VCD file. This is an XML document that defines all the spoken commands that the user can

say to initiate actions or invoke commands when activating your app.

Box 2: Register the command sets in the VCD file when the app is launched.

Here’s an example that shows how to install the commands specified by a VCD file (vcd.xml).

C#

var storageFile =

await Windows.Storage.StorageFile.GetFileFromApplicationUriAsync(

new Uri(“ms-appx:///AdventureWorksCommands.xml”));

await

Windows.ApplicationModel.VoiceCommands.VoiceCommandDefinitionManager.

InstallCommandDefinitionsFromStorageFileAsync(storageFile);

Box 3:

Once your app has been launched and the voice command sets installed, specify how your app responds to subsequent voice command activations.Example:

protected override void OnActivated(IActivatedEventArgs e)

{

// Was the app activated by a voice command?

if (e.Kind != Windows.ApplicationModel.Activation.ActivationKind.VoiceCommand)

{

return;

}

Etc.

https://msdn.microsoft.com/en-us/library/windows/apps/mt185609.aspx


Q35. You are developing a Universal Windows Platform (UWP) app.

You plan to publish the app to the Microsoft Store. The app will have a 30-day trial mode.

During the trial mode, you need to limit the number of exposed features.

Which object should you use to ascertain whether the app is running in trial mode?

A. CurrentApp

B. ListingInformation

C. Current

D. Application

Answer: B

Explanation: 

Exclude or limit features in a trial version by using the current license state of your app, that is stored as

properties of the LicenseInformation class.

https://msdn.microsoft.com/en-us/library/windows/apps/mt219685.aspx


Q36. DRAG DROP

You are developing a Universal Windows Platform (UWP) app.

While testing the app, you discover performance issues.You need to profile the performance of the app as the app runs.

Which three 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.

Select and Place:

Answer: 

Explanation: 

Visual Studio diagnostic tools help you analyze the performance of your programs .Click Debug / Start

Diagnostic Tools Without Debugging. Change the target to your project, and then select which Tool you want to run, such as Code Analysis.

https://msdn.microsoft.com/en-us/library/dn957936.aspx