Identify the incorrect statement about Delegated Development in ServiceNow.
A. Administrators can grant non-admin users the ability to develop global applications.
B. Administrators can specify which application file types the developer can access.
C. Administrators can grant the developer access to script fields.
D. Administrators can grant the developer access to security records.
Which of the following statements does NOT apply when extending an existing table?
A. The parent table's Access Controls are evaluated when determining access to the new table's records and fields
B. The new table inherits the functionality built into the parent table
C. The new table inherits all of the fields from the parent table
D. You must script and configure all required behaviors
Which of the following methods prints a message on a blue background to the top of the current form by default?
A. g_form.addInfoMsg()
B. g_form.addInfoMessage()
C. g_form.showFieldMessage()
D. g_form.showFieldMsg()
Which Report Type(s) can be created by right-clicking on a column header in a table's list?
A. Bar Chart, Pie Chart, Histogram, and Line
B. Bar Chart
C. Bar Chart, Pie Chart, and Histogram
D. Bar Chart and Pie Chart
Which one of the following is NOT a method used for logging messages in a server-side script for a privately-scoped application?
A. gs.log()
B. gs.error()
C. gs.warn()
D. gs.debug()
Which one of the following database operations cannot be controlled with Application Access?
A. Query
B. Update
C. Create
D. Delete
When debugging Email Notifications, what must you check on a user record? (Choose three.)
A. Active must be true.
B. The First name and Last name fields must have values.
C. The value in the Notification field must be set to enabled.
D. The user must not be locked out.
E. The Email field must have a value.
Which of the following methods is NOT part of the ServiceNow REST API?
A. COPY
B. GET
C. DELETE
D. POST
Assume a table called table exists and contains 3 fields: field1, field2, field3. Examine the Access Control list for table:

Which field or fields can a user with the itil role read?
A. field3 only
B. filed1 and field3
C. All fields
D. All fields except field3
Identify the ways an application can respond to an Event generated by the gs.eventQueue() method: (Choose two.)
A. Client Script
B. Email Notification
C. Scheduled Script Execution (Scheduled Job)
D. Script Action
E. UI Policy