ServiceNow Certified Application Developer — Question 68
Which of the following GlideRecord methods run a query against a database table? (Choose three.)
Answer options
- A. _get()
- B. runQuery()
- C. query()
- D. _query()
- E. get(
Correct answer: C, D, E
Explanation
The correct answers C, D, and E, which are 'query()', '_query()', and 'get(', respectively, are all methods that initiate a query against a database table in GlideRecord. Options A and B do not perform this function; '_get()' retrieves a single record by its unique identifier, and 'runQuery()' is not a valid GlideRecord method.