The correct answer is that the UI Policy's actions will be applied when a user with the admin role accesses a record interactively via the browser. This is because the 'Reverse if false' checkbox being unchecked means the policy’s conditions are evaluated only during interactive form loads, not on background processes or web services. When the conditions are true, the actions execute for any user, including admins, but the key distinction is that the policy runs solely on browser-based access. On the ServiceNow Certified Application Developer exam, this tests your understanding of UI Policy execution scope—a common trap is assuming unchecked 'Reverse if false' prevents actions entirely, when it actually just limits evaluation to interactive sessions. Remember, unchecked means "no reversal," so the policy only fires when conditions are met during a live form load. A useful memory tip: "Unchecked means no undo—actions only apply when conditions are true on the screen you view."
SNOW-CAD Core Application Development Practice Question
This SNOW-CAD practice question tests your understanding of core application development. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
Exhibit (UI Policy condition script on incident table):
```javascript
(function executeCondition() {
if (g_user.hasRole('admin') && g_user.isInteractive()) {
return true;
}
return false;
})();
```
The UI Policy has a 'Reverse if false' checkbox unchecked. When will the UI Policy's actions (such as setting a field mandatory) be applied?
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
When a user with the 'admin' role accesses a record interactively (e.g., via the browser).
Option D is correct because the 'Reverse if false' checkbox being unchecked means the UI Policy's conditions are evaluated only on interactive form loads (browser access), and the actions apply when the conditions are true. For non-admin users, UI Policies with 'Reverse if false' unchecked apply only when conditions are met during interactive access; however, the question specifies the checkbox is unchecked, and the correct answer highlights that admin users accessing records interactively trigger the policy's actions when conditions are true, as UI Policies do not run for web services or background operations unless explicitly configured.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
When any user accesses a record interactively.
Why it's wrong here
The condition also checks for admin role.
✗
When any user accesses a record via any method.
Why it's wrong here
Both conditions must be satisfied.
✗
When a user with the 'admin' role accesses a record via web services.
Why it's wrong here
Web services are non-interactive, so g_user.isInteractive() returns false.
✓
When a user with the 'admin' role accesses a record interactively (e.g., via the browser).
Why this is correct
Both conditions must be true: admin role and interactive session.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates confuse UI Policies with business rules, assuming they run for all access methods (including web services), or they forget that admin users have special handling where UI Policies still execute but may not enforce mandatory/read-only constraints, leading them to pick 'any user' or 'via any method' options.
Detailed technical explanation
How to think about this question
Under the hood, UI Policies are client-side and server-side scripts that run during form load and field value changes, but only for interactive sessions (browser requests). The 'Reverse if false' checkbox controls whether the policy's actions (e.g., mandatory, visible) are applied when the condition is false; if unchecked, actions only apply when the condition is true. A subtle behavior is that admin users bypass some UI Policy restrictions by default (e.g., mandatory fields are not enforced for admins), but the policy's actions still execute on the server side; this is why the exam focuses on admin interactive access as the correct scenario.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the SNOW-CAD exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Core Application Development — This question tests Core Application Development — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: When a user with the 'admin' role accesses a record interactively (e.g., via the browser). — Option D is correct because the 'Reverse if false' checkbox being unchecked means the UI Policy's conditions are evaluated only on interactive form loads (browser access), and the actions apply when the conditions are true. For non-admin users, UI Policies with 'Reverse if false' unchecked apply only when conditions are met during interactive access; however, the question specifies the checkbox is unchecked, and the correct answer highlights that admin users accessing records interactively trigger the policy's actions when conditions are true, as UI Policies do not run for web services or background operations unless explicitly configured.
What should I do if I get this SNOW-CAD question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This SNOW-CAD practice question is part of Courseiva's free ServiceNow certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SNOW-CAD exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.