Sample questions
ServiceNow Certified Application Developer CAD practice questions
A business rule on the Incident table should send an email notification when the state changes to 'Resolved'. Which two conditions should be checked in the business rule script? (C…
Automating application logic with business rules and scriptsmediumSee the answer and why each option is right or wrong →What happens when a user changes the state from '2' to '1' on an incident record?
An administrator wants to enable inbound email integration to automatically create incidents from emails sent to support@company.com. What is the first step in configuring this?
A company needs to automatically update the 'Assignment group' field on the Change Request table to 'Change Management' when the 'Category' field is set to 'Network'. Which type of…
Automating application logic with business rules and scriptseasySee the answer and why each option is right or wrong →The Business Rule above runs on the 'incident' table. It is set to run 'before' update. What is the most likely issue with this script?
Drag and drop the steps to create a new table in ServiceNow into the correct order.
A developer needs to create a service catalog variable that allows the user to select multiple values from a predefined list. Which variable type should be used?
Which TWO of the following are valid ways to create a Business Rule? (Choose two.)
Refer to the exhibit. The script runs as a business rule on the incident table. What will happen when this script executes?
Automating application logic with business rules and scriptseasySee the answer and why each option is right or wrong →Refer to the exhibit. A developer runs this script and notices it only returns 10 incidents even though there are more than 10 active priority 1 incidents. What is the reason?
A developer is creating a business rule to automatically assign tasks to a specific group based on the category. The rule is set to run before insert and update on the Task table.…
Automating application logic with business rules and scriptshardSee the answer and why each option is right or wrong →A developer needs to create a new table to store custom survey responses. The table should have a field to store the survey name and a field to store the response text. The develop…
A ServiceNow instance is configured with a custom table 'u_asset_history' that stores historical records for asset changes. This table has a reference field 'u_asset' pointing to t…
A developer is testing a REST API call to retrieve active users with the ITIL role created since last month. The response returns an error. What is the most likely cause?
A flow designer wants to send an email notification with a custom logo. They need to ensure the email template references the correct image. What is the best practice?
Designing interfaces and user experiencesmediumSee the answer and why each option is right or wrong →A ServiceNow administrator is configuring Single Sign-On (SSO) using SAML 2.0 with a corporate identity provider. Users report that after authenticating, they are redirected back t…
A developer is debugging an issue where a Script Action in a Flow Designer flow is not triggering. The flow is configured to run when a record is created or updated in the incident…
A developer needs to count the number of records in the 'task' table that have been updated since the last import. Which GlideAggregate method is correct?
What is the most likely cause of this error?
A ServiceNow instance is being integrated with an external HR system using a SOAP message. The SOAP call is failing intermittently. The developer notices that the XML payload conta…
A developer creates a script include named 'Utils' with a function that uses gs.log('message'). When called from a business rule on the incident table, the log is written. However,…
Automating application logic with business rules and scriptshardSee the answer and why each option is right or wrong →Which TWO actions are valid for handling errors in a Flow Designer integration action? (Choose two.)
A company needs to integrate ServiceNow with an external HR system using REST API. The HR system requires OAuth 2.0 client credentials grant. Which ServiceNow application should be…
Integrating and managing application datamediumSee the answer and why each option is right or wrong →A developer writes a business rule to run on 'before' update of the Incident table. The rule sets a short description only if it is empty. However, the short description is never s…
Automating application logic with business rules and scriptsmediumSee the answer and why each option is right or wrong →