ServiceNow Certified Application Developer — Question 158
How can an application respond to an Event triggered by the gs.eventQueue() method? (Choose two.)
Answer options
- A. Client Script
- B. UI Policy
- C. Script Action
- D. Scheduled Script Execution (Scheduled Job)
- E. Email Notification
Correct answer: C, E
Explanation
The correct options, C and E, are valid ways for an application to handle events triggered by gs.eventQueue(). A Script Action can execute custom logic in response to the event, while an Email Notification can send alerts based on the event. Options A, B, and D do not directly respond to events triggered by gs.eventQueue().