Developing Mobile Apps — Question 36
You have two Universal Windows Platform (UWP) apps named Catalog and Research, respectively.
You need to create a service in the Catalog app that can be queried by the Research app.
Which three tasks should you perform? Each correct answer presents part of the solution.
Answer options
- A. Enter the package family name of the Catalog app in the Catalog app.
- B. Add a Windows Runtime component to the Catalog app.
- C. Enter the package family name of the Catalog app in the Research app.
- D. Add an app service extension to package.appmanifest file in the Research app.
- E. Add a Windows Runtime component to the Research app.
- F. Add an app service extension to package.appmanifest file in the Catalog app. BCF
Correct answer:
Explanation
The correct answers are B, D, and F. Adding a Windows Runtime component to the Catalog app (B) allows it to expose functionalities, while including an app service extension in both the Catalog (F) and Research (D) apps enables communication between them. Options A, C, and E do not directly contribute to establishing the service connection required.