PL-900 Demonstrate the capabilities of Power Apps Practice Question
Exhibit
{
"name": "Filter",
"parameters": [
{
"name": "source",
"type": "table",
"description": "The data source to filter"
},
{
"name": "formula",
"type": "boolean",
"description": "A boolean expression to evaluate for each record"
}
],
"returnType": "table"
}Refer to the exhibit. The JSON describes a Power Apps function. Which call to this function will return a table of records where the 'Status' column equals 'Active'?
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
✓
Filter(Accounts, Status = 'Active')
The Filter function in Power Apps takes the data source as the first argument and a formula as the second argument. Option B correctly uses Filter(Accounts, Status = 'Active'). Option A is incorrect because 'Active' alone is not a valid formula. Option C has the arguments reversed. Option D has the formula as the first argument and the source as the second, which is invalid.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Filter(Accounts, 'Active')
Why it's wrong here
Second parameter must be a boolean expression, not a string.
- ✓
Filter(Accounts, Status = 'Active')
Why this is correct
Correct syntax: source then boolean formula.
- ✗
Filter('Active', Accounts)
Why it's wrong here
First parameter must be a table.
- ✗
Filter(Status = 'Active', Accounts)
Why it's wrong here
Parameters are in wrong order.
Go deeper
Related to this question
About these practice questions
This PL-900 question is part of Courseiva's 904-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam 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.