Microsoft Certified: Power Platform App Maker Associate Canvas App Development 1 — Questions and Answers
Question 1: Which property of a Canvas app Gallery control determines the data source that populates the gallery items?
- Items (Correct answer)
- DataSource
- Records
- Collection
Correct answer: Items
The Items property of a Gallery control is set to the data source or collection that populates its records.
Question 2: In a Canvas app, which function is used to submit a form and save data to the connected data source?
- SubmitForm() (Correct answer)
- SaveRecord()
- Patch()
- Collect()
Correct answer: SubmitForm()
SubmitForm() validates and saves the form's data to the underlying data source.
Question 3: What is the purpose of the Concurrent() function in Power Apps Canvas apps?
- Run multiple formulas simultaneously to improve performance (Correct answer)
- Create parallel approval branches
- Lock records during editing
- Merge two data collections
Correct answer: Run multiple formulas simultaneously to improve performance
Concurrent() executes multiple formulas at the same time, reducing total load time when retrieving data.
Question 4: Which Canvas app control should you use to allow users to sign and capture their signature digitally?
- Pen Input (Correct answer)
- Ink Answer
- Rich Text Editor
- Camera
Correct answer: Pen Input
The Pen Input control lets users draw or sign with a stylus or finger directly in the app.
Question 5: When a Canvas app uses delegation, what happens to data operations that exceed the delegation limit?
- Only the first 500 or 2000 records are processed locally (Correct answer)
- The operation fails with an error
- All records are retrieved but sorted client-side
- Power Apps automatically pages through all records
Correct answer: Only the first 500 or 2000 records are processed locally
Non-delegable operations are processed on the device using only up to the app's data row limit (default 500, max 2000).
Question 6: Which property controls whether a Canvas app control is visible to users at runtime?
- Visible (Correct answer)
- DisplayMode
- Hidden
- Active
Correct answer: Visible
The Visible property accepts a Boolean expression and shows or hides the control based on its value.
Which property of a Canvas app Gallery control determines the data source that populates the gallery items?