ServiceNow Certified Application Developer — Question 26
Which objects can you use in a Scheduled Script Execution (Scheduled Job) script?
Answer options
- A. GlideRecord and current
- B. GlideUser and GlideRecord
- C. GlideSystem and GlideRecord
- D. GlideSystem and current
Correct answer: C
Explanation
The correct answer is C, as GlideSystem provides system-related functionalities and GlideRecord allows for database record manipulation, both of which are essential in Scheduled Job scripts. Options A, B, and D include either 'current,' which is not applicable in this context, or 'GlideUser,' which is irrelevant for Scheduled Jobs as it pertains to user context rather than system operations.