Correct Answer: E
Formulas in Power Apps are similar to Excel. But in Power Apps, formulas perform operations on the app and app’s controls instead of cells and spreadsheets.
For formulas operations, you can use various elements like: Functions — operate on the parameters and return values. There are specific Power Apps group of functions — behavior functions. This group describes the behavior of the controls like the Button when you push it.
Signals — provide information about an environment like GPS coordinates.
Enumerations — return predefined constant values like Color with the set of its properties: Color.Red, Color.Blue, etc.
Named operations — return a reference to the app or app’s controls like Self, Parent, ThisItem, or ThisRecord.
Controls and their properties — operate on the properties for setting control’s configuration. There is a list of controls that you can use in your apps like Button, Check Box, Column chart, etc.
When you need to change the controls state (Enabled/Disabled) on a canvas screen, you put code in the DisplayMode.
There are three states for the DisplayMode: Edit, Disabled, and View. By default, the control’s DisplayMode is set to Edit.
When the DisplayMode is set to View, the control looks like in the Edit state, but a user cannot select it.
All other options are incorrect.
For more information about managing canvas app controls by formulas, please visit the below URL:
https://docs.microsoft.com/en-us/learn/modules/author-basic-formula-change-properties-powerapps/6-functions-validating-data