ServiceNow Certified Application Developer — Question 154
Which is an example of when an application might use a Scheduled Script Execution (Scheduled Job)?
Answer options
- A. The application needs to run a client-side script at the same time every day.
- B. The application needs to query the database every day to look for unassigned records.
- C. To display a custom welcome message when a user logs in.
- D. To validate form input fields before a record is submitted.
Correct answer: B
Explanation
Option B is correct because Scheduled Script Executions are designed for tasks that require periodic execution, such as querying the database for unassigned records. Options A, C, and D are incorrect because they involve client-side scripting or real-time interactions, which are not suitable for scheduled jobs.