Exam UiARD All QuestionsBrowse all questions from this exam
Question 193

During the debugging process, which panel will help monitor the variables' values, arguments, and user-defined expressions within the scope of the executing activity?

    Correct Answer: C

    During the debugging process, the Watch Panel will help monitor the variables' values, arguments, and user-defined expressions within the scope of the executing activity. It allows users to observe these values and expressions as they are updated after each step of execution, ensuring that the state of the program can be tracked in real-time and any issues can be identified.

Discussion
mzzaOption: C

Keyword here is "Monitor" and that is done throught Watch Panel

Engineer24Option: C

Similar to the Call Stack panel, the Watch panel is only visible during debugging. It can be set to display the values of variables or arguments, and values of user-defined expressions that are in scope. These values are updated after each activity execution while debugging.

Engineer24Option: B

The Immediate panel is only visible during debugging, and it can be used for inspecting data available at a certain point during debugging. It can evaluate variables, arguments, or statements. To do so, simply type the variable or argument name in the Immediate window and press Enter.

sur_bhi123456789Option: B

B is the right ans.