Exambible 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 Rebirth Microsoft 70-357 dumps study guide. PASSED 70-357 First attempt! Here What I Did.
Q11. 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
Q12. DRAG DROP
You are developing a Universal Windows Platform (UWP) app.
The app manipulates accounts by using a class named Account that you developed.
You need to automate tests for the debit method of the Account class.
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:
Test methods marked with the TestMethod Attribute are unavailable if the class that contains them is not
marked with the TestClass Attribute. The test class is not valid without the TestClass Attribute.
Q13. DRAG DROP
You are developing a Universal Windows Platform (UWP) app that will provide users with the ability to assign tasks to their contacts. The app will have a button that users click to display their contact list.
You need to develop the click event handler for the button.
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:
Example:
private async void PickAContactButton_Click(object sender, RoutedEventArgs e)
{
ContactPicker contactPicker = new ContactPicker();
Contact contact = await contactPicker.PickContactAsync();
}
https://msdn.microsoft.com/en-us/library/windows/apps/mt185415.aspx
Q14. 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
Q15. DRAG DROP
On the details page, you render the picture of the computer inside an object of the Rectangle type.
You need to implement the ability to rotate the rectangle that contains the picture.
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:
Box 1, Box 2: Get the Rectangle and its RenderTransform matrix:
Rectangle rectToMove = e.OriginalSource as Rectangle;
Matrix rectsMatrix = ((MatrixTransform)rectToMove.RenderTransform).Matrix;
Box 3, box 4, box 5: Rotate the Rectangle:
rectsMatrix.RotateAt(e.DeltaManipulation.Rotation,
e.ManipulationOrigin.X,
e.ManipulationOrigin.Y);
https://msdn.microsoft.com/library/ee649090(v=vs.100).aspx
Q16. 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
Q17. 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
Q18. DRAG DROP
You are developing an app in Microsoft Visual Studio 2015. The source code is stored in a team project in
Visual Studio Online. Visual Studio Online is configured to use Team Foundation version control. The team
project is configured to use a Builds check-in policy.
After you make some changes to the code, the project fails to build because of code errors.
You need to provide another developer with the ability to review the code changes.
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:
From the web portal home page, start a feedback request by clicking the Request feedback button.
Box 3:
Add the feedback reviewers.
Box 4:
Reviewers launch your application and provide feedback through the free Microsoft Feedback Client which they need to install.
https://msdn.microsoft.com/en-us/library/vs/alm/work/connect/get-feedback
Q19. You are developing a Universal Windows Platform (UWP) app that has the following unit test.
You need to ensure that TestMethod1 appears in the Test Explorer window of Microsoft Visual Studio.
What should you add?
A. [TestCategory(“Enabled”)]before the UnitTest1 declaration
B. [TestProperty(“Enabled”,”True”)]before the TestMethod1 declaration
C. [TestClass]before the UnitTest1 declaration
D. [TestProperty(“AutoStart”,”True”)] before the TestMethod1 declaration
Answer: C
Explanation:
The [TestClass] attribute is required in the Microsoft unit testing framework for managed code for any class that contains unit test methods that you want to run in Test Explorer.
https://msdn.microsoft.com/en-us/library/ms182532.aspx
Q20. DRAG DROP
You are developing a Universal Windows Platform (UWP) app that will provide users with the ability to assign tasks to their contacts. The app will have a button that users click to display their contact list.
You need to develop the click event handler for the button.
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:
Example:
private async void PickAContactButton_Click(object sender, RoutedEventArgs e)
{
ContactPicker contactPicker = new ContactPicker();
Contact contact = await contactPicker.PickContactAsync();
}
https://msdn.microsoft.com/en-us/library/windows/apps/mt185415.aspx