Practice SNOW-CAD Application development using ServiceNow Studio questions with full explanations on every answer.
Start practicing
Application development using ServiceNow Studio — choose a session length
Free · No account required
Click any question to see the full explanation and answer options, or start a focused practice session above.
A developer is creating a custom application in ServiceNow Studio and wants to ensure that the application can be easily installed in other instances without conflicts. Which approach should the developer follow?
2A developer needs to add a new table to an existing scoped application in ServiceNow Studio. What is the correct sequence of steps?
3A developer is troubleshooting a business rule in a scoped application that is not triggering. The rule is set to run 'before' query, with condition 'current.state == 1'. The table has read ACLs that restrict access. What is the most likely reason the business rule is not executing?
4A developer wants to use ServiceNow Studio to create a client script that runs when a form loads and sets a field value based on the current user's department. Which type of client script should be used?
5A developer is building a custom application that requires a scheduled job to run every hour and check for overdue tasks. In ServiceNow Studio, what is the best way to implement this?
6A developer is creating a scoped application and needs to reference a global table (e.g., 'sys_user') from a business rule. Which TWO statements are true regarding cross-scope access?
7A developer is using ServiceNow Studio to deploy a custom application to a production instance. Which THREE actions are recommended best practices for deployment?
8A developer encounters this error when running a business rule in a scoped application. The table 'x_myapp_incident' was created in the application scope and has records in it. What is the most likely cause?
9A developer notices that the business rule does not set the assignment group as expected when a new record is created with state 0. What is the most likely issue?
10A developer is building a custom application in ServiceNow Studio. The application requires a table that stores incident-like records but with additional custom fields. The developer wants to leverage existing functionality such as assignment rules, escalation, and SLA tracking. Which approach should the developer take?
11Which TWO statements are true about using ServiceNow Studio for application development?
12A developer is building a custom application in ServiceNow Studio for IT asset management. The application includes a table 'Asset' with fields: asset_tag (string), serial_number (string), purchase_date (date), cost (currency), and status (choice: In Use, In Stock, Retired). The developer needs to create a business rule that automatically sets the status to 'Retired' when the cost is zero and the purchase_date is older than 5 years. The business rule should run before the record is saved to the database and should not prevent the save if conditions are not met. The developer writes the following business rule in Studio: Table: Asset, When: Before, Order: 100, Condition: current.cost == 0 && current.purchase_date < gs.yearsAgoStart(5). The script is: current.status = 'Retired'; However, the status is not being updated as expected. What is the most likely issue?
13A developer needs to create a custom application that tracks employee training completions. The application must allow managers to view a list of their direct reports' training records. Which ServiceNow Studio feature should be used to define the relationship between the Manager and Employee tables?
14Drag and drop the steps to create an ACL (Access Control List) in ServiceNow into the correct order.
15Match each ServiceNow scripting API to its function.
16A company needs to create a new application in ServiceNow Studio. What is the correct first step?
17A developer builds an application in Studio and wants to ensure all changes are captured in an update set. What is true?
18A developer is troubleshooting a client script that hides a field on a form when a condition is met, but it is not working. The script is attached to the 'g_form' object in Studio. What is the most likely reason?
19In ServiceNow Studio, which role is required to create a new scoped application?
20A developer needs to share a custom table from a scoped application with another application. What is the best practice in Studio?
21A developer is creating a business rule that runs before a query to modify the query condition. Which event should be specified?
22Which of the following is a benefit of using ServiceNow Studio for application development?
23A developer wants to add a new field to a table that is part of a scoped application. What is the correct method in Studio?
24A developer is building a flow in Flow Designer as part of a scoped application. The flow needs to trigger when a record is created in a specific table. Which trigger should be used?
25Which TWO of the following are valid methods to create a new application scope in ServiceNow Studio?
26A developer is experiencing an issue where a client script is not executing in a scoped application. Which TWO of the following could be causing the issue?
27Which THREE of the following are components that can be created directly within ServiceNow Studio?
28A developer is working on an application in Studio and needs to create a new table that extends a base table. Which step is essential?
29When creating a business rule in Studio, a developer wants the rule to run only when the state field changes from 'New' to 'Work in Progress'. Which condition should be used?
30A developer needs to debug an issue where a client script is not triggering when a field changes. What is the most efficient first step in troubleshooting within Studio?
31A developer has created a custom application and wants to ensure that all changes are captured in an update set for migration. Which practice should be followed?
32In ServiceNow Studio, when developing a flow that requires a decision based on a record's category, which component should be used?
33A developer wants to create a new UI action that appears on the form only when the record is in a specific state. Which property should be configured?
34A developer is creating a Scheduled Job in Studio that needs to run every hour. Which type of trigger should be selected?
35When building a custom application using ServiceNow Studio, which of the following is NOT a recommended practice for version control?
36A developer needs to implement a server-side validation that prevents update to a record if a related record's status is 'Closed'. Where should this logic be placed?
37A developer is troubleshooting an issue where a business rule is not firing. Which TWO steps should the developer take to diagnose the problem? (Choose two.)
38In ServiceNow Studio, which TWO elements can be created directly from the 'Create Application File' wizard? (Choose two.)
39A developer is creating an application in ServiceNow Studio and needs to ensure that all new records created in a custom table are automatically assigned a number. Which THREE methods can be used to achieve this? (Choose three.)
40Refer to the exhibit. What is the primary issue with this script if it is intended to update all incidents in state 'New' (state=1) to priority 2?
41Refer to the exhibit. The above JSON represents an application manifest generated by Studio. What does the dependency on 'global' with version '>=3.0.0' indicate?
42Refer to the exhibit. What does this script do?
43A developer needs to expose a custom table's data via REST API in ServiceNow Studio. Which approach should they use?
44After importing an update set from another instance, a scoped application shows multiple conflicts in Studio. What is the best first step to resolve?
45A developer is building a scoped application in Studio that needs to access global records. Which application property should be enabled?
46A developer is designing a UI Policy that should run client-side but references a complex server-side calculation. Which approach is best?
47In ServiceNow Studio, which file type is automatically generated when creating a new application?
48A developer is debugging a Business Rule that runs on 'before' but not showing expected behavior. In Studio, which tool can show the execution order and triggered scripts?
49Which TWO actions can be performed directly from ServiceNow Studio?
50Which THREE considerations are important when designing a scoped application for a customer?
51Which TWO application file types can be exported as XML from Studio?
52What is the purpose of this script?
53A company uses a scoped application to manage IT equipment. The application has a client script that calls a GlideRecord query on a large table. Recently, the script started showing 'Script exceeded maximum execution time' errors. The developer checks the Studio debugger and sees the query runs on the entire table without filters. The developer needs to fix this issue. The environment is production, and downtime must be minimized. Which course of action should the developer take?
54A large enterprise has multiple scoped applications that share common code. The developer created a shared application as a dependency. However, when updating the shared application, some dependent applications break. The developer needs to manage updates to the shared application without causing disruptions. The environment is under change control and requires approval for any deployment. Which approach is the best practice?
55A developer is asked to add a new field to a scoped application's table. The developer opens Studio, navigates to the table, and tries to add a new field but the 'Add Field' button is greyed out. The table is part of the scoped application. The developer has the admin role. Other tables in the same application allow field addition. What is the most likely cause?
56A developer is working on a new application and wants to ensure all changes are tracked for deployment. The developer creates a new application in Studio and makes modifications. When the developer tries to create an update set, the application changes are not captured. The developer checks the application properties and sees the 'Update Set' field is set to 'Default'. The developer is in a scoped application. What is a possible reason?
57A ServiceNow developer is creating a new scoped application in Studio to manage IT asset lifecycle. They want to ensure the application is easily identifiable and follows best practices. What should the developer set for the application's name and scope fields?
58A developer is building an application in ServiceNow Studio. Which three of the following are correct practices when using Studio? (Choose three.)
59Refer to the exhibit. A developer created this Script Include for use in a Service Portal widget. When calling the processor from a client script, the developer passes no 'sysparm_name' parameter. What will be the result?
60A large enterprise has developed a custom scoped application in ServiceNow Studio to manage employee onboarding. The application includes multiple business rules, client scripts, and a custom table. Recently, after a clone from production to a sub-production instance, the application fails to upgrade properly. The developer notices that the application version in the sub-prod instance shows an older version than the source, and many application files appear to be missing. The developer suspects the issue is related to how the application was packaged or the upgrade process. What should the developer do to resolve this issue?
The Application development using ServiceNow Studio domain covers the key concepts tested in this area of the SNOW-CAD exam blueprint published by ServiceNow. Courseiva provides free domain-focused practice, mock exams, missed-question review, and readiness tracking across all SNOW-CAD domains — no account required.
The Courseiva SNOW-CAD question bank contains 60 questions in the Application development using ServiceNow Studio domain. Click any question to see the full explanation and answer breakdown.
Start with a 10-question focused session to identify your baseline accuracy in this domain. Read every explanation — even for questions you answer correctly — to understand the reasoning. Once you score consistently above 80%, move to a 20–30 question session to confirm depth before moving to the next domain.
Yes — the session launcher on this page draws questions exclusively from the Application development using ServiceNow Studio domain. Choose 10, 20, 30, or 50 questions for a focused session, or click individual questions to review them one by one.
Save your results, see per-domain analytics, and get readiness scores — free, for every certification.
Sign Up FreeFree forever · Every certification included