ExamGecko
Home / Microsoft / PL-100 / Practice Test 1
Ask Question

Microsoft PL-100 Practice Test 1

Add to Whishlist
00:00:00
Show Answer
Report Issue   Restart test

Question 1 / 40

You need to set the value for a global variable named RunningTotal to 5 and navigate to the previous screen named MainScreen. Which formula should you use?

UpdateContext( { RunningTotal: 5 } ); Navigate( MainScreen,

ScreenTransition.Cover, RunningTotal );

UpdateContext( { RunningTotal: 5 } ); Navigate( MainScreen,

ScreenTransition.Cover, RunningTotal );

If( Value(TextBox1.Text) >= 0, (Set( RunningTotal, 5);

Back();), Color.Green )

If( Value(TextBox1.Text) >= 0, (Set( RunningTotal, 5);

Back();), Color.Green )

UpdateContext( { RunningTotal:5 } ); Back()

UpdateContext( { RunningTotal:5 } ); Back()

Set( RunningTotal, 5 ); Back();

Set( RunningTotal, 5 ); Back();

Comment (0)
Suggested answer: D
Explanation:

You set the value of the global variable with the Set function. Set( MyVar, 1 ) sets the global variable MyVar to a value of 1.

Use the Back and Navigate function to change which screen is displayed.

Reference:

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/working-with-variables

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-navigate

asked 05/10/2024
Clive Roberts
50 questions