Correct Answers: F and H
Power Automate expression builder helps users create expressions that contain functions, operators, variables, explicit values, or constants. All expressions are organized in groups, like String functions, Collection, Logic functions, Manipulation, and others. Power Automate and Azure Logic Apps use the Workflow Definition Language for their expressions and definitions of their flows.
When you need to compare the date-time expressions, you can use the ticks function. This function provides the number of 100-nanosecond intervals since midnight of January 1, 0001, like for "2021-05-06T07:00:00Z" timestamp has 637558812000000000 ticks.
If somebody does not provide a "Due date" value, this field’s value will be null. Therefore, you need to use the coalesce function to supply a non-null value to ticks.
The coalesce function checks the input value (or values) for a null and returns the value instead of null:the input or a predefined value if the input is null or not null. Option H is correct because the SLOT1 is ticks.
Option F is correct because the SLOT2 is coalesce.
Here is the expression:
ticks(coalesce(triggerBody()?[`Duedate`],formatdatetime(`01/01/1901`,`MM/dd/yyyy`)))
All other options are incorrect.
For more information about Power Automate expressions, please visit the below URLs:
https://docs.microsoft.com/en-us/power-automate/use-expressions-in-conditions
https://docs.microsoft.com/en-us/azure/logic-apps/workflow-definition-language-functions-reference#ticks
https://docs.microsoft.com/en-us/azure/logic-apps/workflow-definition-language-functions-reference#coalesce