Questions Exam - Vancouver Flashcards

1
Q

Q1. Can inherited fields be deleted from a table?
a) Yes, select the red X in the left-most column in the table definition
b) Yes, but only if they are text fields
c) Yes, but only if there has never been any saved field data
d) No, inherited fields cannot be deleted from a child table

A

d) No, inherited fields cannot be deleted from a child table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Q2. What is the purpose of the Application Picker?
a) Select an application to run
b) Select an application as a favorite in the Application Navigator
c) Choose an application to edit and set the Application Scope
d) Choose an application to download and install

A

c) Choose an application to edit and set the Application Scope

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Q3. What are Application Files in a ServiceNow application?
a) An XML export of an application’s table records
b) CSV files containing data imported into an application
c) Servicenow artifacts comprising an application
d) XML exports of an application’s Update Set

A

c) Servicenow artifacts comprising an application

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Q4. Which one of the following is NOT true for Modules?
a) Modules open content pages
b) Access to Modules is controlled with roles
c) Every Module must be part of an Application menu
d) Every Module must be associated with a table

A

d) Every Module must be associated with a table
(some modules type do not need table)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Q5. A graphical view of relationships among tables is a <blank>.
a) Schema map
b) Dependency view
c) Graphical User Interface
d) Map source report</blank>

A

a) Schema map

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Q6. Which one of the following is true for the Application Picker?
a) All custom application scope and the Global scope appear in the Application Picker
b) All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker
c) Only custom applications appear in the Application Picker
d) Only downloaded applications appear in the Application Picker

A

a) All custom application scope and the Global scope appear in the Application Picker

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Q7. When creating an application through the Guided Application Creator, which of the following is a user experience option?
a) Portal
b) Mobile
c) Self-service
d) Workspace

A

b) Mobile

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Q8. When writing a Client Script to provide feedback targeted on top of the form, which method should be used?
a) g_form.showInfoMessage()
b) g_form.showFieldMsg()
c) g_form.addInfoMessage()
d) g_form.addFieldMsg()

A

c) g_form.addInfoMessage()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Q9. Which actions can a Business Rule take without scripting?
a) Set field values and write to the system log
b) Set field values and generate an event
c) Set field values and add message
d) Set field values and query the database

A

c) Set field values and add message

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Q10. Which server-side object provides methods for working with dates when writing a script in a privately scoped application?
a) GlideDateTime
b) GlideRecord
c) GlideSystem
d) current

A

a) GlideDateTime

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Q11. Application developers can specify which ServiceNow page a user sees after submitting a new record using the Record Producer UI. How is the page specified?
a) Create an application property to store the URL
b) Configure the page in the Module that opens the Record Producer UI
c) Write an after Business Rule script for the Record Producer’s table: window.redirect = “<URL>"
d) Write a script in the Record Producer's Script field: producer.redirect = "<URL>"</URL></URL>

A

d) Write a script in the Record Producer’s Script field: producer.redirect = “<URL>"</URL>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Q12. Identify characteristic(s) of a Record Producer. (Choose three)
a) All records created using this strategy are inserted into the Requested Item [sc_req_item] table.
b) Each field prompts the user with a question rather than a field label.
c) They must be scripted.
d) You can script behaviors of fields in the user interface.
e) Graphics can be included on the user interface.

A

B, C e D

b) Each field prompts the user with a question rather than a field label.
c) They must be scripted.
d) You can script behaviors of fields in the user interface.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Q13. Which server-side API debug log method is available for scoped applications?
a) gs.log()
b) gs.info()
c) gs.debuglog()
d) gs.print()

A

b) gs.info()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Q14. Which script types execute on the server? (Choose three)
a) Business Rule
b) Client Scripts
c) UI Policies
d) Script Actions
e) Scheduled Jobs

A

A, D e E

a) Business Rule
d) Script Actions
e) Scheduled Jobs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Q15. What is the best UX format to use for lists and forms?
a) Forms
b) Lists
c) Standard
d) Classic

A

b) Lists

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Q16. Which of the following statements is true for the Form Designer?
a) To add a field to the form layout, drag the field from the fields tab to the desired destination on the form.
b) To create a new field on a form’s table, drag the appropriate data type from the Field types tab to the form and then configure the new field.
c) To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button.
d) To add a section to the form layout, drag it from the field types tab to the desired destination on the form.

A. a, b, c, and d
B. b, c, and d
C. a, b, and d
D. a, b, and c

A

D. a, b, and c

a) To add a field to the form layout, drag the field from the fields tab to the desired destination on the form.
b) To create a new field on a form’s table, drag the appropriate data type from the Field types tab to the form and then configure the new field.
c) To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Q17. To see what scripts, reports, and other application artifacts will be in a published application:
a) Enter the name of the Application in the Global search field
b) Open the list of Update Sets for the instance
c) Examine the Application Files Related List in the application to be published
d) Open the artifact records individually to verify the value in the Application field

A

c) Examine the Application Files Related List in the application to be published

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Q18. Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?
a) All access to this table via web services
b) Can create, Can update, and Can delete
c) Can read does not affect the availability of other Application Access fields
d) Allow configuration

A

b) Can create, Can update, and Can delete

(These fields become read only when ‘can read’ is de-selected)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Q19. When creating new application files in a scoped application, cross scope access is turned on by default in which of the following?
a) REST messages
b) Table
c) Script Include
d) Workflow

A

b) Table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Q20. In an Email Notification, which one of the following is NOT true for the Weight field?
a) Only Notifications with the highest weight for the same record and recipients are sent.
b) A Weight value of zero means that no email should be sent
c) The Weight value defaults to zero
d) A Weight value of zero means the Notification is always sent when the Notifications When to send criteria is met

A

b) A Weight value of zero means that no email should be sent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Q21. Which of the following objects does a Display Business Rule NOT have access to?
a) previous
b) GlideSystem
c) g_scratchpad
d) current

A

a) previous

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Q22. Which of the following features are available to Global applications? (Choose two)
a) Automated Test Framework
b) Source Control
C) Delegated Development
d) Flow Designer

A

A e D

a) Automated Test Framework
d) Flow Designer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Q23. Which one of the following is NOT a UI Action type?
a) List choice
b) Form button
c) List banner button
d) Form choice

A

d) Form choice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Q24. Which of the following is NOT supported by Flow Designer?
a) Call a subflow from a flow
b) Test a flow with rollback
c) Use Delegated Developer
d) Run a flow from a MetricBase Trigger

A

b) Test a flow with rollback

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

Q25. Which of the following are true for reports in ServiceNow? (Choose three)
a) Any user can see any report shared with them.
b) Can be a graphical representation of data.
c) All users can generate reports on any table.
d) Can be run on demand by authorized users.
e) Can be scheduled to be run and distributed by email.

A

B, D e E

b) Can be a graphical representation of data.
d) Can be run on demand by authorized users.
e) Can be scheduled to be run and distributed by email.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

Q26. Modules must have a Link type. Which one of the following is a list of Link types?
a) List of Records, Separator, Catalog Type, Roles
b) Assessment, List of Records, Separator, Timeline Page
c) List of Records, Content Page, Order, URL (from arguments:)- Order is not a link type
d) Assessment, List of Records, Content Page, Roles

A

b) Assessment, List of Records, Separator, Timeline Page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Q27. Which one of the following is true for a table with the ‘Allow configuration’ Application Access option selected?
a) Only the in scope applications scripts can create Business Rules for the table.
b) Any user with the applications user role can modify the applications scripts.
c) Out of scope applications can create Business Rules for the table.
d) Out of scope applications can add new tables to the scoped application

A

c) Out of scope applications can create Business Rules for the table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

Q28. When working in the Form designer, configuring the label of a field in a child table changes the label on which table(s)?
a) base table
b) child table
c) parent table
d) all tables

A

b) child table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

Q29. Which one of the following is true?
a) A UI Policy Actions execute before the UI Policy Scripts.
b) The execution order for a UI Policy Scripts and Actions is determined at runtime.
c) A UI Policy Scripts execute before the UI Policy Actions
d) A UI Policy Actions and Scripts execute at the same time

A

c) A UI Policy Scripts execute before the UI Policy Actions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

Q30. Which method call returns true only if the currently logged in user has the catalog_admin role and in no other case?
a) g_user.hasRole(‘catalog_admin’)
b) g_user.hasRoleExactly(‘catalog_admin’)
c) g_user.hasRoleOnly(‘catalog_admin’)
d) g_user.hasRoleFromList(‘catalog_admin’)

A

b) g_user.hasRoleExactly(‘catalog_admin’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

Q31. There is a basic strategy when creating a Utils Script Include. Identify the step that does not belong.
a) Identify the table
b) Script the function(s)
c) Create a class
d) Create a prototype object from the new class

A

a) Identify the table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

Q32. Which roles grant access to source control repository operations such as importing applications from source control, or linking an application to source control? (Choose two)
a) source_control
b) source_control_admin
c) admin
d) git_admin

A

A e C

a) source_control
c) admin

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

Q33. When configuring the content of an Email Notification, which syntax should be used to reference the properties of an event triggering the Notification?
a) ${event.<property>}
b) ${current.<property>}
c) ${<property>.getDisplayValue()}
d) ${gs.<property>}</property></property></property></property>

A

a) ${event.<property>}</property>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

Q34. Which one of the following is true for a Script Include with a Protection Policy value of Protected?
a) Any user with the protected_edit role can see and edit the Script Include
b) The Protection policy option can only be enabled by a user with the admin role
c) The Protection Policy is applied only if the glide.app.apply_protection system property value is true
d) The Protection Policy is applied only if the application is downloaded from the ServiceNow App Store

A

d) The Protection Policy is applied only if the application is downloaded from the ServiceNow App Store

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

Q35. Which one of the following is true for GlideUser (g_user) methods?
a) Can be used in Client Scripts and UI policies only
b) Can be used in Business Rules only
c) Can be used in Client Scripts, UI Policies, and UI Actions
d) Can be used in Business Rules, and Scripts Includes

A

c) Can be used in Client Scripts, UI Policies, and UI Actions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

Q36. When configuring a module, what does the Override application menu roles configuration option do?
a) Users with the module role but without access to the application menu access the module
b) Self-Service users can access the module even though they do not have roles
c) Admin is given access to the module even if Access Controls would ordinarily
prevent access
d) Users with access to the application menu can see the module even if they don’t have the module role

A

a) Users with the module role but without access to the application menu access the module

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

Q37. When creating an application through the Guided Application Creator, which of the following is NOT an option for creating a table?
a) Upload spreadsheet
b) Create table from template
c) Extend a table
d) Create table from scratch

A

b) Create table from template

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

Q38. Why would you build a custom app? (Choose two)
a) To fulfill is specific use case on internal processes
b) To avoid using a code repository like GitHub or GitLab
c) To create a custom integration for 3rd party system
d) To replace ServiceNow Base Tables

A

A e C

a) To fulfill is specific use case on internal processes
c) To create a custom integration for 3rd party system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

Q39. What are the ways to designate data tables when Guided Application Creator(GAC)?[Choose three]
a) Upload an existing PDF
b) Create a new table on the platform
c) Use an existing table on the platform
d) Upload an existing spreadsheet
e) Upload an existing word processing document
f) Use a freeform database

A

B, C e D

b) Create a new table on the platform
c) Use an existing table on the platform
d) Upload an existing spreadsheet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

Q40. When a selecting a data type for a field that will be displayed on a form, which of the following statements is NOT correct?
a) Use the Choice data type to limit options in a field
b) Use the Data data type to enter the date and time of day
c) Use the Phone number data type to automate phone number data validation
d) Use the string data type for a free-form text field

A

b) Use the Data data type to enter the date and time of day

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

Q41. Client-side scripts manage what?
a) Forms and Forms fields
b) Playbook access
c) Database and backend
d) User access

A

a) Forms and Forms fields

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
42
Q

Q42. What syntax is used in a Record Producer script to access values from Record Producer form fields?
a) producer.field_name
b) producer.variablename
c) current.variable_name
d) current.field_name

A

b) producer.variablename

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
43
Q

Q43. How do you configure a Scheduled Job to execute on the last day of every month?
a) Set the Run field value to Periodically and the Repeat Interval value to 31
b) Set the Run field value to Periodically and the Repeat Interval value to Last Day
c) Set the Run field value to Monthly and the Day field value to 31
d) Set the Run field value to Monthly and the Day field value to Last Day

A

c) Set the Run field value to Monthly and the Day field value to 31

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
44
Q

Q44. Modules must have a Link Type. Which one of the following is a list of Link types?
a) List of Records, Separator, Catalog Type, Roles
b) Assessment, List of Records, Separator, Timeline Page
c) List of Records, Content Page, Order, URL (from arguments:)- Order is not a link type
d) Assessment, List of Records, Content Page, Roles

A

b) Assessment, List of Records, Separator, Timeline Page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
45
Q

Q45. When managing global application files, you can NOT:
a) Add files from global scope to a global application
b) Remove files from a global application
c) Move an application file between global applications
d) Move applications files into or out of a scoped application

A

d) Move applications files into or out of a scoped application

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
46
Q

Q46. Which utility is used to determine if field names in an Import Set match the field names on the target table when importing data into ServiceNow?

a) Auto Map matching fields
b) Transform Maps
c) CI Relationship Builder
d) Business Service Management Map

A

a) Auto Map matching fields

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
47
Q

Q47. Which of the following are true for reports in ServiceNow? (Choose three)
a) Any user can see any report shared with them
b) Can be a graphical representation of data
c) All users can generate reports on any table
d) Can be run on demand by authorized users
e) Can be scheduled to be run and distributed by email

A

B, D e E

b) Can be a graphical representation of data
d) Can be run on demand by authorized users
e) Can be scheduled to be run and distributed by email

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
48
Q

Q48. In an Email Notification, which one of the following is NOT true for the Weight field?
a) Only Notifications with the highest weight for the same record and recipients are sent
b) A weight value of zero means that no email should be sent
c) The weight value defaults to zero
d) A weight value of zero means the Notification is always sent when the Notification’s When to send criteria is met

A

b) A weight value of zero means that no email should be sent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
49
Q

Q49. You are writing an Async Business Rule for a table in a different scope than the Business Rule record. Which one of the following database operations CANNOT be part of the Async Business Rule’s configuration?
a) Delete
b) Update
c) Query
d) Insert

A

c) Query

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
50
Q

Q50. Which one of the following is NOT a GlideUser (g_user) method?

a) userName()
b) getFullName()
c) hasRole()
d) hasRoleExactly()
e) none of the options are a method

A

e) none of the options are a method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
51
Q

Q51. ServiceNow Desktop applications automatically run on which platform(s):
a) Desktop
b) Smartphone
c) Desktop and Smartphone
d) Desktop and Tablet

A

d) Desktop and Tablet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
52
Q

Q52. Which of the following GuideRecord methods run a query against a database table? [Choose 3 answers]
a) -query()
b) runQuery()
c) query()
d) -get()
e) get()

A

A, C e E

a) -query()
c) query()
e) get()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
53
Q

Q53. Application developers configure ServiceNow using industry standard Javascript to…
a) Enable the right-click to edit the context menus on applications in the navigator
b) Extend and add functionality
c) Customize the organization’s company logo and banner text
d) Configure the outgoing email display name

A

b) Extend and add functionality

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
54
Q

Q54. Access Control debug information identification whether each element of an Access Control granted of denied access. The elements of an Access Control evaluated?
a) Conditions, Script, Roles
b) Script, Conditions, Roles
c) Conditions, Roles, Script
d) Roles, Conditions, Script

A

d) Roles, Conditions, Script

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
55
Q

Q55. Identify the way(s) an application can respond to an Event generated by the gs.eventQueue() method.
a) Script Action
b) Scheduled Script Execution (Scheduled Job)
c) UI Policy
d) Email Notification

A. b and C
B. c
C. a and d
D. a and c

A

C. a and d

a) Script Action
d) Email Notification

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
56
Q

Q56. In a Business Rule, which one of the following returns the sys_id of the currently logged in user?
a) g_form getUserID()
b) g_form getUserSysy
c) gs.getUserSysID()
d) gs.getUserID()

A

d) gs.getUserID()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
57
Q

Q57. Which of the following objects does a Display Business Rule NOT have access to?
a) previous
b) GlideSystem
c) g_scratchpad
d) current

A

a) previous

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
58
Q

Q58. Which of the following statements is NOT true for the Form Designer?
a) To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.
b) To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form.
c) To remove a field from the form layout, hover over the field to enable the action buttons, and select the Delete(X) button.
d) To create a new field on a form’s table, drag the appropriate data type from the Field Types tab to the form and then configure the new field.

A

a) To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.

59
Q

Q59. Which method call returns true only if the currently logged in user has the catalog_admin role and in no other case?
a)g_user.hasRole(‘catalog_admin’)
b)g_user.hasRoleExactly(‘catalog_admin’)
c)g_user.hasRoleOnly(‘catalog_admin’)
d)g_user.hasRoleFromList(‘catalog_admin’)

A

b)g_user.hasRoleExactly(‘catalog_admin’)

60
Q

Q60. In a Business Rule, which one of the following returns true if the currently logged in user has the admin role?
a) g_form.hasRoleExactly(‘admin’)
b) gs.hasRole(‘admin’)
c) g_form.hasRole(‘admin’)
d) gs.hasRoleExactly(‘admin’)

A

b) gs.hasRole(‘admin’)

61
Q

Q61. When creating a table in a privately-scoped application, which four Access Controls are created for the table?
a) Insert, Delete, Query, Write
b) Create, Delete, Read, Write
c) Create, Delete, Read, Update
d) Insert, Delete, Query, Update

A

b) Create, Delete, Read, Write

(ACL are Create, Read, Write, Delete. Application access has 4 checkboxes, can read, can update, can create, can delete)

62
Q

Q62. Which one of the following is the fastest way to create and configure a Record Producer?
a) Create a Catalog Category, open the category, and select the Add New Record Producer button
b) Use the Record Producer module then add and configure all variable manually
c) Open the table in the Table records and select the Add to Service Catalog Related Link
d) Open the table’s form, right-click on the form header, and select the Create Record Producer menu item

A

c) Open the table in the Table records and select the Add to Service Catalog Related Link

63
Q

Q63. What are some benefits of developing private, scoped applications? (Choose two)
a) To avoid using a code repository like GitHub or GitLab
b) To reduce risk at code collisions
c) To enable installation and uninstallation of an application
d) To replicate ServiceNow functions a private scope

A

B e C

b) To reduce risk at code collisions
c) To enable installation and uninstallation of an application

64
Q

Q64. What intuitive development interface guides users through the initial application development process?
a) Guided Tour Designer
b) Guided Application Creator
c) ServiceNow Studio
d) Flow Designer

A

b) Guided Application Creator

65
Q

Q65. Server-side scripts manage what?
a) Database and backend
b) Playbook access
c) User access
d) Forms and Fields

A

a) Database and backend

66
Q

Q66. When creating an application through the Guided Application Creator, which of the following is NOT an option for creating a table?
a) Create table from template
b) Create table from scratch
c) Extend a table
d) Upload spreadsheet

A

a) Create table from template

67
Q

Q67. Tables that extend a table do what?
a) Automatically update the application scope
b) Do not inherit the parent’s fields
c) Sometimes inherit the parent’s fields
d) Inherit the parent’s fields

A

d) Inherit the parent’s fields

68
Q

Q68. What is the ServiceNow store?
a) Downloadable content ServiceNow script archive
b) Alternate name for the ServiceNow Developer Share site
c) The source for ServiceNow Community created developer content
d) Marketplace for free and paid certified ServiceNow applications and integrations

A

d) Marketplace for free and paid certified ServiceNow applications and integrations

69
Q

Q69. How can an application link to a repository behind a firewall?
a) This option is not supported.
b) Link an application to source control through a MID Server.
c) Link an application to source control through an access token.
d) Link an application to source control with multi-factor authentication

A

b) Link an application to source control through a MID Server.

70
Q

Q70. You are developing the MyApp application that has a table, Table A. When the MyApp application is installed on an instance, you want Table A’s records to be installed as part of the application.
Table A’s records will be installed when:
a) Table A is active and extends the Task table
b) Table A’s records are added to the application record using the Create Application Files context menu item
c) Table A has an automatic number counter for new records
d) Table A is not included in the System Clone > Exclude Tables list

A

b) Table A’s records are added to the application record using the Create Application Files context menu item

71
Q

Q71. Which of the following methods is NOT part of the ServiceNow REST API?
a) Copy
b) Get
c) Delete
d) Post

A

a) Copy

72
Q

Q72. What are web services?
a) Methods used to created and maintain UI Pages
b) Methods used to allow applications to connect to other software applications over a network
c) Methods used to discover a wide variety of systems and applications
d) They provide a customer-facing view of available service and product offerings provided by departments within the organization

A

b) Methods used to allow applications to connect to other software applications over a network

73
Q

Q73. 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.

A

A, D e E

a) Active must be true.
d) The user must not be locked out.
e) The email field must have a value.

(In exam 2 options to choose, A and E)

74
Q

Q74. How does ServiceNow match inbound email to existing records?
a) Watermark
b) Record link
c) Subject line
d) sys_id

A

a) Watermark

75
Q

Q75. Which one of the following objects CANNOT be used in a Script Action script?
a) previous
b) GlideRecord
c) event
d) current

A

a) previous

76
Q

Q76. Which one of the following is NOT an example of when an application might use a Scheduled Script Execution (Scheduled Job)?
a) The application needs to send weekly email reminders to requestors for all records on a table
b) The application needs to run a clean up script on the last day of every month
c) The application needs to query the database every day to look for unassigned records
d) The application needs to run a client-side script at the same time every day

A

d) The application needs to run a client-side script at the same time every day

77
Q

Q77. Which one of the following is a benefit of creating an Application Properties page for each application you develop?
a) Application Properties allow a developer to override the application properties inherited from ServiceNow
b) An Application Properties page is a good landing page for an application
c) Application Properties allow a developer or admin to make changes to an application’s behavior without modifying application artifacts
d) Application users know to go to the Application Properties page to change the appearance of an application

A

c) Application Properties allow a developer or admin to make changes to an application’s behavior without modifying application artifacts

78
Q

Q78. What is a workflow context?
a) The table for which a workflow is defined plus any conditions such as “Active is true”
b) It is generated from a workflow version, executes activities, and follows transitions
c) The business reason or process for which a workflow is designed
d) It is a checked out workflow which is being edited

A

b) It is generated from a workflow version, executes activities, and follows transitions

79
Q

Q79. Which of the following statements must evaluate to true for a user to pass an Access Control? (Choose three)
a) The user has one of the roles specified in the Required roles related list
b) Scripts configured in the Access Control must evaluate to true
c) Other matching Access Controls for the records evaluate to true
d) Conditions configured in the Access Control must evaluate to true
e) The user must be granted access through a business rule

A

A, B e D

a) The user has one of the roles specified in the Required roles related list
b) Scripts configured in the Access Control must evaluate to true
d) Conditions configured in the Access Control must evaluate to true

80
Q

Q80. For application Access there is a configuration option called Allow access to this table via web services. Which one of the following statements is true when this option is selected?
a) This option restricts the ability to delete records via web services but records can always be read
b) Even when not selected, users with the correct permissions can use web services to access the table’s records
c) This option restricts access only to SOAP web services but does not apply to REST
d) The user performing the query via web services must have the correct permissions to access the table’s records

A

d) The user performing the query via web services must have the correct permissions to access the table’s records

81
Q

Q81. Which one of the following database operations CANNOT be controlled with Application Access?
a) Query
b) Update
c) Create
d) Delete

A

a) Query

82
Q

Q82. Which one of the following is true for this script fragment? g_user.hasRole(‘x_my_app_user’);

a) There is no g_user.hasRole() method
b) The method returns false only if the currently logged in user has the x_my_app_user role
c) The method returns true only if the currently logged in user has the x_my_app_user role
d) The method returns true if the currently logged in user has the x_my_app_user role or the admin role

A

d) The method returns true if the currently logged in user has the x_my_app_user role or the admin role

83
Q

Q83. When creating a table in a privately-scoped application, which four Access Controls are created for the table?
a) Insert, Delete, Query, Write
b) Create, Delete, Read, Write
c) Create, Delete, Read, Update
d) Insert, Delete, Query, Update

A

b) Create, Delete, Read, Write

84
Q

Q84. What is the best UX format to use for lists and forms?
a) Forms
b) Lists
c) Standard
d) Classic

A

b) Lists

85
Q

Q85. Which script types execute on the server? (Choose three)
a) Business Rule
b) Client Scripts
c) UI Policies
d) Script Actions
e) Scheduled Jobs

A

A, D, E

a) Business Rule
d) Script Actions
e) Scheduled Jobs

86
Q

Q86. Which server-side API debug log method is available for scoped applications?
a) gs.log()
b) gs.info()
c) gs.debuglog()
d) gs.print()

A

b) gs.info()

87
Q

Q87. Identify characteristic(s) of a Record Producer. (Choose three)
a) All records created using this strategy are inserted into the Requested Item [sc_req_item] table.
b) Each field prompts the user with a question rather than a field label.
c) They must be scripted.
d) You can script behaviors of fields in the user interface.
e) Graphics can be included on the user interface.

A

B, C, D

b) Each field prompts the user with a question rather than a field label.
c) They must be scripted.
d) You can script behaviors of fields in the user interface.

88
Q

Q88. Application developers can specify which ServiceNow page a user sees after submiting a new record using the Record Producer UI. How is the page specified?
a) Create an application property to store the URL
b) Configure the page in the Module that opens the Record Producer UI
c) Write an after Business Rule script for the Record Producer’s table: window.redirect = “<URL>"
d) Write a script in the Record Producer's Script field: producer.redirect = "<URL>"</URL></URL>

A

d) Write a script in the Record Producer’s Script field: producer.redirect = “<URL>"</URL>

89
Q

Q89. Which server-side object provides methods for working with dates when writing a script in a privately scoped application?
a) GlideDateTime
b) GlideRecord
c) GlideSystem
d) current

A

a) GlideDateTime

90
Q

Q90. Which actions can a Business Rule take without scripting?
a) Set field values and write to the system log
b) Set field values and generate an event
c) Set field values and add message
d) Set field values and query the database

A

c) Set field values and add message

91
Q

Q91. When writing a Client Script to provide feedback targeted at a specific field, which method should be used?
a) g_form.showInfoMessage()
b) g_form.showFieldMsg()
c) g_form.addInfoMessage()
d) g_form.addFieldMsg()

A

b) g_form.showFieldMsg()

92
Q

Q92. Which of the following statements is NOT true for the Form Designer?
a) To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.
b) To add a field to the form layout, drag the field from the Field tab to the desired destination on the form.
c) To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (x) button.
d) To create a new field on a form’s table, drag the appropriate data type from the Field Types tab to the form and then configure the new field.

A

a) To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.

93
Q

Q93. When creating an application through the Guided Application Creator, which of the following is a user experience option?
a) Portal
b) Mobile
c) Self-service
d) Workspace

A

b) Mobile

94
Q

Q94. What records are used to track cross-scope applications or scripts that request access to an application, application resource, or event?
a) Restricted caller access records
b) Caller tracking records
c) Access control level records
d) Cross-scope access records

A

a) Restricted caller access records

94
Q

Q96. Using Custom UI test step in Automated Test Framework, which of the following is NOT a testable page component?
a) Buttons
b) UI controls
c) UI pages
d) Form field values

A

d) Form field values

94
Q

Q97. Which of the following is NOT a way to install an application on a ServiceNow instance?
a) Install an application from the Application Repository
b) Select the Copy button on the application record
c) Download and install an application from the ServiceNow Share web site
d) Download and install a third-party application from the ServiceNow Store

A

c) Download and install an application from the ServiceNow Share web site

95
Q

Q98. If you create a SOAP Message what syntax indicates a variable to pass when the function is called?
a) current.variable_name
b) ${variable_name}
c) < variable_name >.do?WSDL
d) < variable_name >

A

b) ${variable_name}

95
Q

Q95. What plugin enables the Guided Application Creator?
a) com.glide.sn-guided-app-creator
b) com.glide.service_creator
c) com.glide.snc.apps_creator
d) com.snc.apps_creator_template

A

a) com.glide.sn-guided-app-creator

96
Q

Q99. What is the purpose of the coalesce field when importing data?
a) If a match is not found, the existing record is updated
b) To determine if a record matches an existing record or is a new record
c) To identify and merge duplicate records
d) When a match is found, a new record is inserted

A

b) To determine if a record matches an existing record or is a new record

97
Q

Q100. Which of the following is NOT a Flow Designer feature?
a) Run a flow from a Catalog item
b) Call a flow from another flow or subflow
c) Add stages to a flow
d) Test a flow using the “Run as” feature

A

d) Test a flow using the “Run as” feature

98
Q

Q101. When troubleshooting and debugging notifications, where do you navigate to see if an email was sent response to an event?
a) System Logs > Events
b) System Logs > Emails
c) System Logs > Push Notifications
d) System Logs > ICE Logs

A

b) System Logs > Emails

99
Q

Q102. Identify the way(s) an application can respond to an Event generated by the gs.eventQueue() method.
a) Script Action
b) Scheduled Script Execution (Scheduled Job)
c) UI Policy
d) Email Notification

A. b and c
B. c
C. a and d
D. a and c

A

C. a and d

a) Script Action
d) Email Notification

100
Q

Q103. What module link type is used to access an Application Properties page?
a) Single Record
b) HTML (from arguments)
c) URL (from arguments)
d) Script (from arguments)

A

c) URL (from arguments)

101
Q

Q104. Which method is used to retrieve Application Property values in a script?
a) gs.getProperty
b) g_form.getAppProperty()
c) g_form.getProperty()
d) gs.getAppProperty()

A

a) gs.getProperty

102
Q

Q105. Which of the following is NOT a caller access field option?
a) Caller Tracking
b) Caller Restriction
c) None
d) Caller Permission

A

d) Caller Permission

103
Q

Q106. Access Control debug information identifies whether each element of an Access Control granted or Denied access. The elements appear in the debug information in the order of evaluation. In which order are the elements of an Access Control evaluated?
a) Conditions, Roles, Script
b) Conditions, Script, Roles
c) Roles, Conditions, Script
d) Script, Conditions, Roles

A

c) Roles, Conditions, Script

104
Q

Q107. In a Business Rule, which one of the following returns the sys_id of the currently logged in user?
a) g_form.getUserID()
b) gs.getUserSysID()
c) gs.getUserID()
d) g_form.getUserSysID()

A

c) gs.getUserID()

104
Q

Q108. What is the GlideForm Client-side scripting object?
a) sn.form
b) g_form
c) gs.form
d) gs_form

A

b) g_form

105
Q

Q109. Which one of the following is a good practice for adding instructions to a form?
a) Related links to wiki pages
b) A context menu UI Action
c) Annotations
d) A populated read-only field

A

c) Annotations

106
Q

Q110. When designing and creating a form what do you create to organize fields on a form?
a) Buttons
b) Tabs
c) Sections
d) Related lists

A

c) Sections

107
Q

Q111. Which class is NOT part of the client side scoped APIs?
a) GlideDialogWindow
b) GlideAjax
c) GlideRecord
d) GlideForm

A

c) GlideRecord

108
Q

Q113. When selecting a data type for a field that will be displayed on a form, which of the following statements is NOT correct?
a) Use the String data type for a free-form text field
b) Use the Phone number data type to automate phone number data validation
c) Use the choice data type to limit options in a field
d) Use the Date data type to enter the date and time of day

A

d) Use the Date data type to enter the date and time of day

(Should use Date/Time field)

108
Q

Q112. Which one of the following is NOT part of the Form Designer?
a) Page header
b) Schema map
c) Field navigator
d) Form layout

A

b) Schema map

109
Q

Q114. What are three ServiceNow table creation methods? (Choose three)
a) Using legacy workflows
b) Upload and turn a spreadsheet into a custom table
c) Using Flow Designer
d) Use the Now Experience Table Creator
e) Extend a table
f) Create a custom table

A

B, E e F

b) Upload and turn a spreadsheet into a custom table
e) Extend a table
f) Create a custom table

110
Q

Q115. Why would you build a custom app? (Choose two)
a) To avoid using a code repository like GitHub or GitLab
b) To replace ServiceNow base tables
c) To fulfill a specific use case on internal processes
d) To create a custom integration for a 3rd party system

A

C and D

c) To fulfill a specific use case on internal processes
d) To create a custom integration for a 3rd party system

111
Q

Q116. Which of the following is true about deleting fields from a table?
a) Table records are deleted when a field is deleted
b) User-defined non-inherited fields can be deleted
c) Any field on a table can be deleted
d) Inherited fields can be deleted

A

b) User-defined non-inherited fields can be deleted

112
Q

Q117. The Task table is an example of which of the following? (Choose two)
a) Parent class
b) Legacy class
c) Child class
d) Base class

A

A and D

a) Parent class
d) Base class

113
Q

Q118. Which of the following is an available feature in Studio? (Choose two)
a) Push to update set
b) Merge branches
c) Search code
d) Push to external source control

A

C and D

c) Search code
d) Push to external source control

114
Q

Q119. Which one of the following is true for the Application Picker and Application Scope?
a) Global is a reserved application which does not appear in the Application Picker
b) Selecting an application from the Application Picker does not set the Application Scope
c) Selecting an application from the Application Picker sets the Application Scope
d) Selecting Global in the Application Picker sets the Application Scope to Incident

A

c) Selecting an application from the Application Picker sets the Application Scope

115
Q

Q120. Which of the following can be an external data source for a ServiceNow application?
a) Microsoft Excel file
b) Data provided by a public web service using SOAP or REST
c) CSV file
d) All of the above

A

d) All of the above

116
Q

Q121. Which ATF Test step allows you to create a user with speeded roles and groups for the test?
a) Create a group
b) Impersonation
c) Create a user
d) Create a role

A

c) Create a user

117
Q

Q122. Why create Applications in ServiceNow?
a) To replace outdated, inadequate, custom business applications and processes
b) To extend service delivery and management to all enterprise departments
c) To allow users full access to all ServiceNow tables, records, and fields
d) To extend the value of ServiceNow

A. a, b and d
B. a, b, c and d
C. a, b, and c
D. b, c, and d

A

A. a, b and d

a) To replace outdated, inadequate, custom business applications and processes
b) To extend service delivery and management to all enterprise departments
d) To extend the value of ServiceNow

118
Q

Q123. Which one of the following is true for the Application Picker?
a) All custom application scope and the Global scope appear in the Application Picker
b) All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker
c) Only Custom applications appear in the Application Picker
d) Only downloaded applications appear in the Application Picker

A

a) All custom application scope and the Global scope appear in the Application Picker

119
Q

Q124. Which one of the following is NOT true for Modules?
a) Modules open content pages
b) Access to Modules is controlled with roles
c) Every Module must be part of an Application Menu
d) Every Module must be associated with a table

A

d) Every Module must be associated with a table

120
Q

Q125. From the list below, identify one reason an application might NOT be a good fit with ServiceNow. The application:
a) Needs workflow to manage processes
b) Requires “as-is” use of low-level programming libraries
c) Requires reporting capabilities
d) Uses forms extensively to interact with data

A

b) Requires “as-is” use of low-level programming libraries

121
Q

Q126. Which of the following is a good practice for adding instructions to a form?
a) Annotations
b) Related links to wiki pages
c) A context Menu UI Action
d) A population read-only field

A

a) Annotations

122
Q

Q128. Which of the following statements is true about Guided Application Creator?
a) The global scope option is turned on by default
b) A scope application user role is automatically created
c) Default access controls are automatically created
d) The welcome screen appears every time a new application is created

A

b) A scope application user role is automatically created

123
Q

Q129. Which of the following features are available to Global applications? (Choose two)
a) Automated Test Framework
b) Source Control
c) Delegated Development
d) Flow Designer

A

A and D

a) Automated Test Framework
d) Flow Designer

124
Q

Q130. One of the uses of the ServiceNow REST API Explorer is:
a) Practice using REST to interact with public data providers
b) Find resources on the web for learning about REST
c) Convert SOAP Message functions to REST methods
d) Create sample code for sending REST requests to ServiceNow

A

d) Create sample code for sending REST requests to ServiceNow

125
Q

Q132. A scoped application containing Flow Designer content dedicated to a particular application is called a(n):

[ ] Spoke
[ ] Action
[ ] Bundle

A

Spoke

126
Q

Q133. Which one of the following is NOT a purpose of application scoping?
a) Provide controls for how scripts from another scope can alter tables in a scoped application
b) Provide a relationship between application artifacts
c) Provide a way of tracking the user who developed an application
d) Provide a namespace (prefix and scope name) to prevent cross application name collisions

A

c) Provide a way of tracking the user who developed an application

127
Q

Q134. How do I make my accept solution widget conditional on page load in Service Portal?
a) Use ngApp
b) Use ng-if
c) Use ngShow

A

b) Use ng-if

128
Q

Q135. Which of the following writes a message to the system log but NOT to the syslog table unless debug has been activated?
a) gs.info(‘Hello World’)
b) gs.log(‘Hello World’)
c) gs.print(‘Hello World’)

A

c) gs.print(‘Hello World’)

129
Q

Q136. What are some of the benefits of extending an existing table such as Task table when creating a new application?[Choose three]
a) You can repurpose existing fields by simply changing the label.
b) All of the parent table records are copied to the new table.
c) Use existing fields with no modifications.
d) Existing logic from the parent table will be automatically applied to the new table.

A

A, C e D

a) You can repurpose existing fields by simply changing the label.
c) Use existing fields with no modifications.
d) Existing logic from the parent table will be automatically applied to the new table.

130
Q

Q137. Which of the following CANNOT be debugged using the Field Watcher?
a) Business Rules
b) Script Includes
c) Client Scripts
d) Access Controls

A

b) Script Includes

131
Q

Q138. Which objects can be used in Inbound Action scripts?
a) previous
b) current
c) event
d) email
e) producer

A

B, C e D

b) current
c) event
d) email

132
Q

Q139. When a ServiceNow instance requests information from a web service, ServiceNow is the web service:
a) Provider
b) Publisher
c) Specialist
d) Consumer

A

d) Consumer

133
Q

Q140. When configuring a REST Message, the Endpoint is:
a) Information about the format of the returned data
b) The commands to the REST script to stop execution
c) The URI of the data to be accessed, queried, or modified
d) The response from the provider indicating there is no data to send back

A

c) The URI of the data to be accessed, queried, or modified

134
Q

Q141. Which roles grant access to source control repository operations such as importing applications from source control, or linking an application to source control?
a) source_control
b) source_control_admin
c) git_admin
d) admin

A

A and D

a) source_control
d) admin

135
Q

Q142. Which of the following methods are useful in Access Control Scripts?
a) gs.hasRole() and current.isNewRecord()
b) g_user.hasRole() and current.isNewRecord()
c) g_user.hasRole() and current.isNew()
d) gs.hasRole() and current.isNew()

A

a) gs.hasRole() and current.isNewRecord()

136
Q

Q143. The source control operation used to store local changes on an instance for later application is called a(n).
a) Tag
b) Update Set
c) Stash
d) Branch

A

c) Stash

137
Q

Q144. Which one of the following is NOT required to link a ServiceNow application to a Git repository?
a) Password
b) Username
c) Application name
d) URL

A

c) Application name

138
Q

Q146. When creating a Utilities Script Include. Identify the step that does not belong.
a) Create a class
b) Script the function(s)
c) Create a prototype object from the new class
d) Identify the table

A

d) Identify the table

139
Q

Q147. Which source control operation is available from BOTH Studio and the Git Repository?
a) Stash local changes
b) Commit changes
c) Switch Branch
d) Create Branch

A

d) Create Branch