Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

HomeCertificationsSNOW-CSATopicsApplication Rules, ACL and Notifications
Free · No Signup RequiredServiceNow · SNOW-CSA

SNOW-CSA Application Rules, ACL and Notifications Practice Questions

20+ practice questions focused on Application Rules, ACL and Notifications — one of the most tested topics on the ServiceNow Certified System Administrator CSA exam. Each question includes a detailed explanation so you learn why the right answer is correct.

Start Application Rules, ACL and Notifications Practice

Exam Domains

Reporting, SLA and ImportsSelf-Service and AutomationUI, Navigation and FormsDatabase Administration and CMDBService Catalog and WorkflowsApplication Rules, ACL and NotificationsAll domains →

Study Tools

Practice TestMock ExamFlashcardsAll Topics

Sample Application Rules, ACL and Notifications Questions

Practice all 20+ →
1.

A company has a custom table 'u_employee_data' with a before query business rule that sets 'u_department' to 'Engineering' when the current user is in the 'ITIL' role. After the business rule is activated, users in the 'ITIL' role report that when they query the table, they see only records with department 'Engineering'. However, the business rule is intended to set the default department for new records only. What is the most likely cause?

A.The business rule should be set to 'async' to avoid affecting queries.
B.The business rule is set to run on the client side instead of server side.
C.The business rule is running on 'before query' instead of 'before insert'.
D.The condition script uses 'gs.getUser().hasRole("ITIL")' incorrectly.

Explanation: The business rule is configured to run on the 'before query' operation, which means it executes every time a query is made against the 'u_employee_data' table. This causes the condition to set the 'u_department' field to 'Engineering' for all records returned by the query, effectively filtering the result set to only those with that department. The intended behavior is to set the default department only when a new record is created, which requires the business rule to run on the 'before insert' operation instead.

2.

An administrator creates a new ACL for the 'incident' table with type 'record', operation 'read', condition script 'current.assignment_group == gs.getUser().getMyGroups()', and requires role 'snc_internal'. A user with role 'snc_internal' who is a member of group 'Service Desk' can view incidents assigned to 'Service Desk' but cannot view incidents assigned to 'Network Support'. What is the most likely reason?

A.The condition script uses 'current.assignment_group' which returns a sys_id, but 'gs.getUser().getMyGroups()' returns a list of group names.
B.The condition script should use 'current.assignment_group.isOneOf(gs.getUser().getMyGroups())' instead.
C.The user does not have the 'snc_internal' role.
D.Another ACL with higher order denies read access to all incidents not matching the condition.

Explanation: Option D is correct because ACLs in ServiceNow are evaluated in order of their 'order' field, and the first matching ACL (either allowing or denying access) determines the outcome. If another ACL with a higher order (lower numeric value) denies read access to incidents not matching the condition, that deny rule will take precedence over the new ACL, preventing the user from viewing incidents assigned to 'Network Support' even though the new ACL would allow it. The user's role and group membership are satisfied, so the issue lies in ACL ordering and a conflicting deny rule.

3.

An administrator wants to send an email notification when a change request state changes to 'scheduled'. The notification should be sent to the change manager. Which two fields must be configured in the notification record?

A."Advanced" tab: register an event to trigger the notification
B."Email template" tab: select an existing template
C."Who will receive" tab: add 'Change manager' role to 'Recipients'
D."When to send" tab: set condition to 'State changes to scheduled'

Explanation: Option C is correct because the 'Who will receive' tab allows you to specify the recipients of the notification by role, user, or group. Adding the 'Change manager' role ensures that all users with that role receive the email when the notification triggers. Option D is correct because the 'When to send' tab defines the condition that must be met for the notification to fire; setting it to 'State changes to scheduled' ensures the notification is sent precisely when the change request state transitions to 'scheduled'.

4.

A junior administrator configures the above business rule and ACL. When a user without any role opens an incident with category 'database' and state 1, the priority is set to 1 correctly. However, the user cannot view the incident record. What is the most likely reason?

A.The ACL condition uses sys_id of assignment group, but the field stores display value.
B.The business rule runs before insert, but the ACL check occurs after insert.
C.The ACL requires a role (empty role list means no role requirement? Actually requires role checked, but no roles listed means any authenticated user, but unauthenticated? The user has no role, and condition fails because assignment group mismatch.
D.The business rule order (100) is too low and another rule overrides the priority.

Explanation: Option C is correct because the ACL condition checks if the assignment group's sys_id matches a value, but the user has no role and the assignment group field likely stores the display value (group name) rather than the sys_id. This mismatch causes the ACL to deny read access, even though the business rule sets the priority correctly. The empty role list in the ACL means no roles are required, but the condition still fails due to the sys_id vs. display value mismatch.

5.

Which TWO conditions must be met for a business rule to execute on a table? (Choose TWO.)

A.The business rule must be associated with a table.
B.The condition script must evaluate to true (or be empty).
C.The business rule must have at least one role specified in the 'Condition' tab.
D.The business rule must have an 'Advanced' script defined.

Explanation: Option A is correct because a business rule in ServiceNow is always scoped to a specific table; it cannot execute without being associated with one. The rule's 'Table' field defines the database table on which the rule triggers, and the platform checks this association before any execution logic runs.

+15 more Application Rules, ACL and Notifications questions available

Practice all Application Rules, ACL and Notifications questions

How to master Application Rules, ACL and Notifications for SNOW-CSA

1. Baseline your knowledge

Start with 10 questions to gauge your current understanding of Application Rules, ACL and Notifications. This tells you whether you need a concept refresher or just practice.

2. Review every explanation

For each question — right or wrong — read the full explanation. Understanding why an answer is correct is more valuable than knowing the answer itself.

3. Focus on exam traps

Application Rules, ACL and Notifications questions on the SNOW-CSA frequently use trap wording. Look for subtle differences in answers that test your precision, not just general knowledge.

4. Reach 80% consistently

Do repeated sessions until you score 80%+ three times in a row. Then move to mixed-mode practice to test cross-topic recall under realistic conditions.

Frequently asked questions

How many SNOW-CSA Application Rules, ACL and Notifications questions are on the real exam?

The exact number varies per candidate. Application Rules, ACL and Notifications is tested as part of the ServiceNow Certified System Administrator CSA blueprint. Practicing with targeted Application Rules, ACL and Notifications questions ensures you can handle any format or difficulty that appears.

Are these SNOW-CSA Application Rules, ACL and Notifications practice questions free?

Yes. Courseiva provides free SNOW-CSA practice questions across all exam topics and domains. The platform includes topic-based practice, mock exams, missed-question review, bookmarked questions, and readiness tracking — no account required.

Is Application Rules, ACL and Notifications one of the harder SNOW-CSA topics?

Difficulty is subjective, but Application Rules, ACL and Notifications is a high-priority exam concept tested in multiple ways — direct recall, scenario analysis, and command-output interpretation. Consistent practice is the best way to build confidence.

Ready to practice?

Launch a full Application Rules, ACL and Notifications practice session with instant scoring and detailed explanations.

Start Application Rules, ACL and Notifications Practice →

Topic Info

Topic

Application Rules, ACL and Notifications

Exam

SNOW-CSA

Questions available

20+