ServiceNow Certified Application Developer — Question 57
Which method is used to retrieve Application Property values in a script?
Answer options
- A. gs.getProperty()
- B. g_form.getAppProperty()
- C. g_form.getProperty()
- D. gs.getAppProperty()
Correct answer: A
Explanation
The correct method to retrieve Application Property values in a script is gs.getProperty(). The other options either reference incorrect methods or the context of the g_form object, which is not used for accessing Application Property values directly.