Microsoft Power Platform App Maker — Question 35
You are creating a multi-page canvas app that loads tabular data from an external data source.
Once loaded, the data must be available to all screens within the canvas app.
You need to reduce the number of times that the app must retrieve data from the data source.
Which two data stores can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
Answer options
- A. parameter
- B. global variable
- C. collection
- D. environment variable
Correct answer: B, C
Explanation
The correct answers are global variable and collection because both can store data that is accessible throughout the app, thus reducing the need for repeated retrievals from the data source. A parameter and an environment variable are not suitable for maintaining data accessibility across multiple screens in this context.