Courseiva
Demonstrate the capabilities of Power AppsmediumMultiple ChoiceObjective-mapped

PL-900 Demonstrate the capabilities of Power Apps Practice Question

Refer to the exhibit. The following JSON shows a Power Apps component (canvas app) manifest snippet:

{
  "properties": {
    "dataSources": [
      {
        "name": "SalesData",
        "type": "Microsoft Dataverse",
        "entity": "accounts"
      }
    ],
    "screens": [
      {
        "name": "MainScreen",
        "controls": [
          {
            "name": "AccountGallery",
            "type": "Gallery",
            "items": "Filter(SalesData, status = 'Active')"
          }
        ]
      }
    ]
  }
}

What is the data source for the gallery named AccountGallery?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The filtered Dataverse Accounts data source

The gallery's Items property uses the Filter function on SalesData, which is defined as a Dataverse entity 'accounts'. This means the data source is a filtered version of the Accounts entity (only records where status is 'Active'). Option B is incorrect because there is no SQL Server table referenced. Option C is incorrect because SalesData is a Dataverse entity, not a SharePoint list. Option D is incorrect because the gallery uses a filtered set, not the raw, unfiltered Accounts entity.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The filtered Dataverse Accounts data source

    Why this is correct

    The Items property applies a filter to the data source.

  • A SQL Server table named Accounts

    Why it's wrong here

    No SQL Server connector is defined.

  • A SharePoint list named SalesData

    Why it's wrong here

    The data source is Dataverse, not SharePoint.

  • The raw Dataverse Accounts entity

    Why it's wrong here

    The gallery uses a filtered view, not the raw entity.

About these practice questions

Courseiva writes every PL-900 question from scratch — 904 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This PL-900 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PL-900 exam.