Question 1 ( Topic 1 )
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
Answer : D
Question 2 ( Topic 1 )
Which of the following are configured in an Email Notification? a) Who will receive the notification. b) What content will be in the notification. c) When to send the notification. d) How to send the notification.
A. a, b and c
B. a, b, and d
C. b, c and d
D. a, c and d
Answer : A
Reference:
https://hi.service-now.com/kb_view.do?s ... =KB0712569
Question 3 ( Topic 1 )
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
Answer : B
Reference:
https://community.servicenow.com/commun ... 231f9619fe
Question 4 ( Topic 1 )
Which one of the following is NOT a debugging strategy for client-side scripts?
A. g_form.addInfoMessage()
B. Field Watcher
C. jslog()
D. gs.log()
Answer : D
Reference:
https://developer.servicenow.com/dev.do ... ervicenow/ app_store_learnv2_scripting_istanbul_debugging_client_scripts
Question 5 ( Topic 1 )
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
Answer : A
Question 6 ( Topic 1 )
Which of the following is NOT a trigger type in Flow Designer?
A. Outbound Email
B. Application
C. Record
D. Schedule
Answer : A
Reference:
https://docs.servicenow.com/bundle/orla ... ggers.html
Question 7 ( Topic 1 )
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
Answer : B
Reference:
https://docs.servicenow.com/bundle/orla ... level.html
Question 8 ( Topic 1 )
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
Answer : B
Reference:
https://docs.servicenow.com/bundle/orla ... ation.html
Question 9 ( Topic 1 )
Which of the following objects does a Display Business Rule NOT have access to?
A. previous
B. GlideSystem
C. g_scratchpad
D. current
Answer : A
Reference:
https://community.servicenow.com/commun ... 231f96197c
Question 10 ( Topic 1 )
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
Answer : CD
Question 11 ( Topic 1 )
Which one of the following is NOT a UI Action type?
A. List choice
B. Form button
C. List banner button
D. Form choice
Answer : D
Reference:
https://docs.servicenow.com/bundle/orla ... ction.html
Question 12 ( Topic 1 )
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
Answer : B
Reference:
https://community.servicenow.com/commun ... 5b8a9619c9
Question 13 ( Topic 1 )
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.
Answer : ABD
Reference:
https://docs.servicenow.com/bundle/orla ... tting.html
Question 14 ( Topic 1 )
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:)
D. Assessment, List of Records, Content Page, Roles
Answer : B
Reference:
https://docs.servicenow.com/bundle/gene ... Types.html
Question 15 ( Topic 1 )
Which one of the following is true for a table with the ג€Allow configurationג€ Application Access option selected?
A. Only the in scope applicationג€™s scripts can create Business Rules for the table
B. Any user with the applicationג€™s user role can modify the applicationג€™s 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
Answer : C
Reference:
https://community.servicenow.com/commun ... 5b8a9619d2
Question 16 ( Topic 1 )
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
Answer : B
Reference:
https://community.servicenow.com/commun ... 45ca9619af
Question 17 ( Topic 1 )
Which one of the following is true?
A. A UI Policyג€™s Actions execute before the UI Policyג€™s Scripts
B. The execution order for a UI Policyג€™s Scripts and Actions is determined at runtime
C. A UI Policyג€™s Scripts execute before the UI Policyג€™s Actions
D. A UI Policyג€™s Actions and Scripts execute at the same time
Answer : C
Reference:
https://community.servicenow.com/commun ... 51ca96199b
Question 18 ( Topic 1 )
Here is the Business Rule script template:
This type of JavaScript function is known as:
A. Constructor
B. Scoped
C. Anonymous
D. Self-invoking
Answer : B
Question 19 ( Topic 1 )
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ג€™)
Answer : C
Reference:
https://community.servicenow.com/commun ... 45ca96196b
Question 20 ( Topic 1 )
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
Answer : A
Question 21 ( Topic 1 )
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
Answer : AC
Reference:
https://docs.servicenow.com/bundle/orla ... ntrol.html
Question 22 ( Topic 1 )
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 name>}
B. ${current.<property name>}
C. ${<property name>.getDisplayValue()}
D. ${gs.<property name>}
Answer : C
Reference:
https://community.servicenow.com/commun ... 231f9619a3
Question 23 ( Topic 1 )
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
Answer : B
Question 24 ( Topic 1 )
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
Answer : C
Reference:
https://developer.servicenow.com/dev.do ... ideUserAPI
Question 25 ( Topic 1 )
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
Answer : D
Reference:
https://hi.service-now.com/kb_view.do?s ... =KB0716421
ServiceNow Certified Application Developer Questions + Answers
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am