PL-200 · Question #131
PL-200 Question #131: Real Exam Question with Answer & Explanation
The correct answer is A: @GreaterOrEquals(TriggerEmail()?['OverdueDate']: '7'). {"question_number": 9, "correct_answer": "A", "explanation": "Power Automate expressions use a function-based syntax. The correct function is greaterOrEquals(), which returns true if the first value is greater than or equal to the second. The @ prefix and ?['PropertyName'] bracke
Question
A company plans to send escalation emails to all customers with overdue invoices. You are creating a Microsoft Power Automate flow to determine whether to send an escalation email. The system must send an alert for all invoices that are seven days or more overdue. You need to configure the flow. Which expression should you use?
Options
- A@GreaterOrEquals(TriggerEmail()?['OverdueDate']: '7')
- B'OverdueDate' >= '7'?'TriggerEmail()': false
- CTriggerEmail() = 'OverdueDate' >= 7;
Explanation
{"question_number": 9, "correct_answer": "A", "explanation": "Power Automate expressions use a function-based syntax. The correct function is greaterOrEquals(), which returns true if the first value is greater than or equal to the second. The @ prefix and ?['PropertyName'] bracket notation for accessing dynamic content are both standard Power Automate expression syntax. Option B uses SQL/spreadsheet comparison syntax, which is invalid in Power Automate. Option C uses a semicolon-delimited syntax that does not exist in Power Automate expression language.", "generated_by": "claude-sonnet", "llm_judge_score": 4}
Topics
Community Discussion
No community discussion yet for this question.