Microsoft Power Platform App Maker — Question 43
You are developing a canvas app to monitor time. The app includes a Text Input control named TIC1 and a Timer control named TIM1.
You need to set TIM1 to a default value.
What should you do?
Answer options
- A. Assign the Text property of TIC1 to the OnSelect property of a TIM1.
- B. Assign the Text property of TIC1 to the Duration property of TIM1.
- C. Assign the Text property of TIC1 to the OnTimerStart property of the TIM1.
- D. Write code in the OnChange property of TIC1 that assigns the value of the Duration property of the Timer control to Text property of the TIC1, in the OnChange property of TIC1, assign the value to the Duration property for TIM1.
Correct answer: B
Explanation
The correct answer is B because setting the Text property of TIC1 to the Duration property of TIM1 directly establishes a default value for the timer. Options A and C incorrectly reference event properties that do not set default values, while D involves unnecessary complexity and does not directly set TIM1's default duration.