ServiceNow Certified Application Developer — Question 70
What are the benefits of storing the majority of an Application’s server-side script logic in a Script Include?
a. This makes execution faster.
b. Only run when called from a script.
c. The script logic can be hidden when the Application is installed from the ServiceNow Store. d. For some changes to application logic there is only one place to make edits.
Answer options
- A. a, b, and d
- B. a, b, c, and d
- C. b, c, and d
- D. a, b, and c
Correct answer: C
Explanation
The correct answer is C because storing script logic in a Script Include allows it to be executed only when called (b), keeps the logic hidden upon installation from the ServiceNow Store (c), and centralizes changes to application logic in one place (d). Option A is incorrect because it misses the benefit of hiding the logic, while option B includes an unnecessary option (a). Option D also misses the hiding logic benefit.