PL-900 Demonstrate the capabilities of Power Apps Practice Question
Exhibit
Refer to the exhibit.
```xml
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="account">
<attribute name="name" />
<attribute name="accountid" />
<attribute name="createdon" />
<order attribute="name" descending="false" />
<filter type="and">
<condition attribute="statecode" operator="eq" value="0" />
<condition attribute="createdon" operator="last-x-days" value="30" />
</filter>
</entity>
</fetch>
```You are reviewing a FetchXML query used in a Power Apps component. The exhibit shows the query. What data will this query return?
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
✓
Active accounts created in the last 30 days, returning name, accountid, and createdon.
The query selects accounts where statecode equals 0 (Active) and createdon is within the last 30 days. It returns name, accountid, and createdon. Option A is wrong because statecode 0 is Active, not Inactive. Option B is wrong because it's not all accounts. Option D is wrong because it does not include all attributes.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
All inactive accounts created in the last 30 days, including all attributes.
Why it's wrong here
Statecode 0 means Active, not Inactive.
- ✗
All accounts created in the last 30 days, only name, accountid, and createdon.
Why it's wrong here
The filter also includes statecode = 0 (Active).
- ✓
Active accounts created in the last 30 days, returning name, accountid, and createdon.
Why this is correct
The filter conditions match: statecode=0 (Active) and createdon last 30 days, and only the specified attributes are returned.
- ✗
All accounts regardless of state, returning all attributes.
Why it's wrong here
The query has a filter and only returns three attributes.
Go deeper
Related to this question
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 →
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.