Certified Application Developer - ServiceNow Questions and Answers
Question 61
Which items are valid UI Action types in ServiceNow? (Choose 3 answers)
Options:
A.
List banner button
B.
Workflow action
C.
Form button
D.
List choice
E.
Form choice
F.
Record navigation button
Answer:
A, C, F
Explanation:
Comprehensive and Detailed Step-by-Step Explanation:
UI Action Types:
List banner button: A button that appears in the list view banner, allowing users to perform actions on multiple records or interact with the list itself.
Form button: A button that appears on a form, enabling users to execute server-side or client-side scripts.
Record navigation button: A button used to navigate between records or perform specific actions related to a record.
Why Other Options Are Incorrect:
Option B (Workflow action): This is not a valid UI Action type; workflows are managed separately.
Option D (List choice) and Option E (Form choice): These are not valid UI Action types; they might confuse users with list or form field options instead.
References:
ServiceNow Developer Documentation on UI Actions​.
Question 62
What is the ServiceNow App Repository?
Options:
A.
A Request table
B.
Another name for update sets
C.
A database containing ServiceNow apps
D.
A collection of files in a Git database
Answer:
C
Explanation:
The ServiceNow App Repository is a central repository for all scoped applications that are published by all ServiceNow customers. It enables ServiceNow customers to upload and distribute applications between their instances. It also provides entitlements and version control for the applications.
References:
ServiceNow application repository
Application Development Platform – ServiceNow
App Repo - ServiceNow Developer Blog
Question 63
When working in the Form Designer, configuring the label of a field in a child table changes the label on which table(s)?
Options:
A.
base table
B.
child table
C.
parent table
D.
all tables
Answer:
B
Explanation:
Configuring the label of a field in a child table changes the label only on that table, not on the base table or the parent table. The base table is the table that contains the common fields for all the extended tables, and the parent table is the table that is directly extended by the child table. The label of a field on the base table or the parent table can be different from the label on the child table. References: [ServiceNow Docs - Table extension], [ServiceNow Community - How to change field label in child table]