
Verified CAD dumps Q&As 100% Pass in First Attempt Guaranteed Updated Dump from TorrentVCE
Pass Certified Application Developer CAD Exam With 141 Questions
NEW QUESTION # 27
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. b, c and d
- B. a, b and c
- C. a, c and d
- D. a, b, and d
Answer: B
Explanation:
https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html
NEW QUESTION # 28
Which one of the following is NOT part of the Form Designer?
- A. Field navigator
- B. Form layout
- C. Page header
- D. Schema map
Answer: D
Explanation:
https://developer.servicenow.com/dev.do#!/learn/courses/sandiego/app_store_learnv2_learnmore_sandiego_learn The Form Designer is a tool that allows you to create and customize forms on the ServiceNow platform. The Form Designer has four main components:
* Form layout: The form layout shows the preview of the form and allows you to drag and drop fields, sections, and related lists onto the form. You can also resize, reorder, and delete the elements on the form layout.
* Page header: The page header shows the name of the table and the form that you are editing. You can also access the form properties, save the form, and switch to the form view from the page header.
* Field navigator: The field navigator shows the list of available fields for the table and allows you to search, filter, and add fields to the form. You can also create new fields and edit existing fields from the field navigator.
* Schema map: The schema map is not part of the Form Designer. The schema map is a separate tool that shows the relationships between tables and fields on the platform. You can access the schema map from the System Definition > Tables module or from the context menu of a table.
References:
* [Form Designer]
* [Schema map]
NEW QUESTION # 29
Which objects can be used in Inbound Action scripts?
- A. current and previous
- B. current and event
- C. current and producer
- D. current and email
Answer: B
NEW QUESTION # 30
Application developers configure ServiceNow using industry standard JavaScript to...
- A. Configure the outgoing email display name
- B. Customize the organization's company logo and banner text
- C. Enable the right-click to edit the context menus on applications in the navigator
- D. Extend and add functionality
Answer: D
Explanation:
Application developers configure ServiceNow using industry standard JavaScript to extend and add functionality. JavaScript is a scripting language that enables developers to create dynamic and interactive web pages, as well as manipulate data and logic on the server-side. ServiceNow provides various APIs and frameworks for developers to use JavaScript to customize and enhance the functionality of their applications, such as client scripts, UI policies, business rules, script includes, UI actions, and more. References: [ServiceNow Docs - JavaScript in ServiceNow], [ServiceNow Docs - Scripting in ServiceNow]
NEW QUESTION # 31
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
NEW QUESTION # 32
Which one of the following is NOT a UI Action type?
- A. List banner button
- B. List choice
- C. Form choice
- D. Form button
Answer: B
Explanation:
A UI Action is a button, link, or choice that can be clicked by a user to perform an action, such as submitting a form or running a script. The following are UI Action types:
* List choice. This is a UI Action that appears as a choice list on a list of records. It can be used to perform an action on multiple records at once, such as deleting or updating them.
* Form button. This is a UI Action that appears as a button on a form. It can be used to perform an action on the current record, such as saving or approving it.
* List banner button. This is a UI Action that appears as a button on the banner of a list of records. It can be used to perform an action on the entire list, such as exporting or printing it.
The following is not a UI Action type:
* Form choice. This is not a UI Action type, but a field type. A form choice is a field that displays a choice list on a form. It can be used to select a value from a predefined set of options, such as priority or state. References: UI Actions, Field Types
NEW QUESTION # 33
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()
Answer: B
Explanation:
From: https://docs.servicenow.com/bundle/paris-application-development/page/script/general-scripting/reference/r_ScriptingAlertInfoAndErrorMsgs.html g_form.showFieldMsg("field_name", "Hello World", "error"); Puts "Hello World" in an error message **below the specified field**. g_form.addInfoMessage() or g_form.addErrorMessage() place a blue box message at the top of the screen. Pg 126 of the CAD handbook The method that prints a message on a blue background to the top of the current form by default is g_form.addInfoMessage(). The g_form object is a global object that provides access to form fields and UI elements on a form. The addInfoMessage() method is a method of the g_form object that displays an informational message next to the form header. The message has a blue background color by default, unless it is overridden by a CSS style. The addInfoMessage() method takes one argument, which is the message text to display. References: [ServiceNow Docs - GlideForm (g_form) API], [ServiceNow Docs - g_form.addInfoMessage()]
NEW QUESTION # 34
Which of the following features are available to Global applications? (Choose two.)
- A. Source Control
- B. Delegated Development
- C. Flow Designer
- D. Automated Test Framework
Answer: C,D
Explanation:
Global applications can use Automated Test Framework and Flow Designer features, but not Source Control and Delegated Development features. Source Control and Delegated Development features are only available to scoped applications . Reference: [Global vs Scoped Applications], [Delegated Development]
NEW QUESTION # 35
Which one of the following is the baseline behavior of a table in a privately-scoped application?
- A. All application scopes can read from the table
- B. Any Business Rule can read, write, delete, and update from the table
- C. The table and its data are not accessible using web services
- D. Only artifacts in the table's application can read from the table
Answer: A
NEW QUESTION # 36
How must Application Access be configured to prevent all other private application scopes from creating configuration records on an application's data tables?
- A. Set the Accessible from field value to All application scopes and de-select the Can create option
- B. Set the Accessible from field value to This application scope only and de-select the Allow access to this table via web services option
- C. You must create Access Controls to prevent all other application scopes from creating configuration records on an application's data tables rather than using Application Access
- D. Set the Accessible from field value to This application scope only
Answer: D
Explanation:
Application Access is a feature that allows you to control the access level of other application scopes to your application's data tables. By setting the Accessible from field value to This application scope only, you can restrict the access to your data tables to only your application scope. This means that other application scopes cannot create, read, write, or delete records on your data tables, unless they have explicit permissions through Access Controls or other means.
Reference:
Application Access
[Application scope]
https://developer.servicenow.com/dev.do#!/learn/learning-plans/rome/new_to_servicenow/app_store_learnv2_securingapps_rome_application_access
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_ExampleDenyingAllDesignAccess.html
NEW QUESTION # 37
How must Application Access be configured to prevent all other private application scopes from creating configuration records on an application's data tables?
- A. Set the Accessible from field value to All application scopes and de-select the Can create option
- B. Set the Accessible from field value to This application scope only and de-select the Allow access to this table via web services option
- C. You must create Access Controls to prevent all other application scopes from creating configuration records on an application's data tables rather than using Application Access
- D. Set the Accessible from field value to This application scope only
Answer: D
Explanation:
Application Access is a feature that allows you to control the access level of other application scopes to your application's data tables. By setting the Accessible from field value to This application scope only, you can restrict the access to your data tables to only your application scope. This means that other application scopes cannot create, read, write, or delete records on your data tables, unless they have explicit permissions through Access Controls or other means.
References:
Application Access
[Application scope]
https://developer.servicenow.com/dev.do#!/learn/learning-plans/rome/new_to_servicenow/app_store_learnv2_securingapps_rome_application_access
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_ExampleDenyingAllDesignAccess.html
NEW QUESTION # 38
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. Open the table in the Table records and select the Add to Service Catalog Related Link
- C. Use the Record Producer module then add and configure all variables manually
- D. Open the table's form, right-click on the form header, and select the Create Record Producer menu item
Answer: B
Explanation:
The fastest way to create and configure a Record Producer is to open the table in the Table records and select the Add to Service Catalog Related Link. This will automatically create a Record Producer with the same fields as the table and add it to the Service Catalog. You can then modify the Record Producer as needed. The other options require more steps and manual configuration. Reference: Create a record producer
NEW QUESTION # 39
Which source control operation is available from BOTH Studio and the Git Repository?
- A. Create Branch
- B. Apply Remote Changes
- C. Stash Local Changes
- D. Edit Repository Configurations
Answer: A
NEW QUESTION # 40
Which one of the following is true?
- A. A UI Policy's Actions and Scripts execute at the same time
- B. A UI Policy's Scripts execute before the UI Policy's Actions
- C. The execution order for a UI Policy's Scripts and Actions is determined at runtime
- D. A UI Policy's Actions execute before the UI Policy's Scripts
Answer: D
Explanation:
Created UI policy on incident form, action set's cmdb_ci field as mandatory and script as not. result, field was not mandatory.
A UI Policy's Actions execute before the UI Policy's Scripts. Actions are predefined operations that can be applied to fields or sections, such as making them mandatory, read-only, visible, or setting a default value.
Scripts are custom JavaScript code that can be used to perform more complex logic or validations. Actions are executed first, and then Scripts are executed if the UI Policy conditions are met. References: [ServiceNow Docs - UI policy actions], [ServiceNow Docs - UI policy scripts]
NEW QUESTION # 41
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.warn()
- B. gs.error()
- C. gs.debug()
- D. gs.log()
Answer: D
NEW QUESTION # 42
Which one of the following is true?
- A. A UI Policy's Actions execute before the UI Policy's Scripts
- B. A UI Policy's Actions and Scripts execute at the same time
- C. A UI Policy's Scripts execute before the UI Policy's Actions
- D. The execution order for a UI Policy's Scripts and Actions is determined at runtime
Answer: C
NEW QUESTION # 43
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
Explanation:
https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html
https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/new_to_servicenow/app_store_learnv2_automatingapps_quebec_when_to_send The Weight field in an Email Notification determines which notification is sent when multiple notifications are triggered for the same record and recipients. Only the notification with the highest weight is sent. A weight value of zero means the notification is always sent when the notification's When to send criteria is met. A weight value of -1 means that no email should be sent3. Reference: Email Notification Weight
NEW QUESTION # 44
Which one of the following is true for the Application Picker?
- A. All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker
- B. All custom application scope and the Global scope appear in the Application Picker
- C. Only custom applications appear in the Application Picker
- D. Only downloaded applications appear in the Application Picker
Answer: B
Explanation:
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/task/t_SelectAnAppFromTheAppPicker.html
NEW QUESTION # 45
What syntax is used in a Record Producer script to access values from Record Producer form fields?
- A. current.variable_name
- B. producer.field_name
- C. current.field_name
- D. producer.variablename
Answer: D
Explanation:
The syntax used in a Record Producer script to access values from Record Producer form fields is producer.variable_name. A Record Producer is a type of catalog item that allows users to create records on any table from the service catalog. A Record Producer script is a server-side script that runs when a Record Producer is submitted, and can be used to set values or perform actions on the generated record. The producer object is a global object that represents the Record Producer form and its variables. The variable_name is the name of the variable defined in the Record Producer. Reference: [ServiceNow Docs - Record producers], [ServiceNow Docs - Record producer script]
NEW QUESTION # 46
Client-side scripts manage what?
- A. Database and backend
- B. Playbook access
- C. Forms and Forms Fields
- D. User access
Answer: A
Explanation:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/server-scripting/concept/c_ServerScripting.html
NEW QUESTION # 47
Which one of the following database operations cannot be controlled with Application Access?
- A. Delete
- B. Query
- C. Create
- D. Update
Answer: B
Explanation:
Application Access is a feature that allows you to control the access level of other application scopes to your application's data tables. You can use Application Access to control the following database operations:
Create: This operation allows the user to create new records on the table. You can enable or disable this operation by selecting or clearing the Can create option.
Delete: This operation allows the user to delete existing records on the table. You can enable or disable this operation by selecting or clearing the Can delete option.
Read: This operation allows the user to view the records on the table. You can enable or disable this operation by selecting or clearing the Can read option.
Write: This operation allows the user to modify the records on the table. You can enable or disable this operation by selecting or clearing the Can write option.
The one database operation that cannot be controlled with Application Access is Query. Query is not an operation, but a method of the GlideRecord class that is used to retrieve records from the database on the server-side. Query is not part of the Application Access rules, but it is affected by the Access Controls and the user's roles.
References:
Application Access
[GlideRecord methods]
NEW QUESTION # 48
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. b, c and d
- B. a, b and c
- C. a, c and d
- D. a, b, and d
Answer: B
Explanation:
https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html Reference:
An Email Notification is a record that defines the content and conditions for sending an email message from the ServiceNow platform. The following are configured in an Email Notification:
Who will receive the notification. This is specified by the Recipients related list, which can include users, groups, email addresses, or scripts that return email addresses.
What content will be in the notification. This is specified by the Subject and Message HTML fields, which can include variables, scripts, or templates to dynamically generate the email content.
When to send the notification. This is specified by the When to send tab, which defines the conditions and events that trigger the email notification.
The following is not configured in an Email Notification:
How to send the notification. This is not a configuration option for an Email Notification. The platform uses the SMTP protocol to send email messages, and the email properties control the email server settings and behavior. Reference: Email Notifications, Get Started with Notifications
NEW QUESTION # 49
......
Ultimate Guide to Prepare Free CAD Exam Questions and Answer: https://drive.google.com/open?id=1WHJGmv4hcOd344wrdFjn4Xf5v1ie0mbx
Pass CAD Tests Engine pdf - All Free Dumps: https://www.torrentvce.com/CAD-valid-vce-collection.html