ServiceNow CIS-CAD - Certified Application Developer
By IAmtheCheese · Updated Jun 9, 2026
| Certification | Certified Application Developer (CAD) |
| Questions | 160 |
| Passing Score | 75% |
| Format | 94% Multiple Choice |
| Sessions Logged | 1,462 |
| Your progress | Log in / Register to track times taken, best score, questions mastered, and coverage on this quiz. |
| Rating |
Certification Summary
The ServiceNow Certified Application Developer exam is for technical consultants and platform developers who build custom scoped applications. It targets the people tasked with extending the platform because a department head insists on a custom workflow, forcing the developer to manage the resulting technical debt before the next platform upgrade hits.
The exam focuses heavily on Application User Interface, Designing and Creating an Application, Security and Restricting Access, and Application Automation, which collectively make up the majority of the content. You will also encounter questions regarding Working with External Data and Managing Applications. You will be tested on the correct syntax for GlideRecord queries and the specific implications of cross-scope access privileges within the Now Platform.
Topics covered
Designing and Creating an Application26 questions
- Determine if an application is a good fit with ServiceNow6 q
- Design and implement a data model8 q
- Create modules6 q
- Use Application scope6 q
Application User Interface42 questions
- Create, design, and customize forms6 q
- Add/Remove fields from forms and tables5 q
- Write, test, and debug client-side scripts for desktop8 q
- Write, test, and debug server-side scripts18 q
- Use a Record Producer as an application's UI5 q
Security and Restricting Access29 questions
- Restrict access to applications and application modules7 q
- Manually and automatically create, test, and debug Access Controls7 q
- Use GlideSystem methods to script security8 q
- Use Application Scope to protect application artifacts7 q
Application Automation29 questions
- Write, test, and debug Workflow and Flow Designer9 q
- Create and use Application Properties6 q
- Create Events, Scheduled Script Executions, and Utils Script Includes10 q
- Send and receive email4 q
Working with External Data21 questions
- Import data in CSV or Excel format7 q
- Integrate to an external data source using REST14 q
Managing Applications13 questions
- Download and install applications4 q
- Use Delegated Development to manage source code and code review3 q
- Use the ServiceNow Git integration to manage source code6 q
Question catalog for this preview
Catalog listing of the 5 preview questions for this quiz.
Question 1
What does the Protected distribution policy do on subscriber instances?
Explanation
Protected defends intellectual property after deployment; pairing policies with testing still matters.
Question 2
You need static coaching text between fields with no new column. What layout element should you use?
Explanation
Annotations are layout-only guidance. They avoid schema churn while remaining part of the form definition.
Question 3
A child table extends task, yet an SLA tied to task never starts on child inserts. What is the first SLA-focused adjustment?
Explanation
Definitions evaluate start/stop filters and table targeting. Child rows often need sys_class_name coverage or a definition aimed at the child table. Inheritance alone does not guarantee attachment.
Question 4
Create ACL script checks current.priority == 1 but priority is null during ACL evaluation. What is happening?
Explanation
Prefer role-based create gates or defer field-sensitive checks to Business Rules when values are unreliable at ACL time.
Question 5
How do teams avoid clobbering each other in the same Git-backed scoped app?
Explanation
Git workflows—not update set grouping—prevent concurrent overwrite on shared branches.