ServiceNow Certified Application Developer — Question 32
Which one of the following is NOT an example of when an application might use a Scheduled Script Execution (Scheduled Job)?
Answer options
- A. The application needs to send weekly email reminders to requestors for all records on a table
- B. The application needs to run a clean up script on the last day of every month
- C. The application needs to query the database every day to look for unassigned records
- D. The application needs to run a client-side script at the same time every day
Correct answer: D
Explanation
The correct answer is D because client-side scripts are executed in the user's browser, not on the server, and do not use Scheduled Script Execution. Options A, B, and C all represent scenarios that can effectively utilize Scheduled Jobs to automate tasks at specific intervals.