Start your CAD Exam Questions Preparation with Updated 102 Questions
A Fully Updated 2023 CAD Exam Dumps - PDF Questions and Testing Engine
The ServiceNow CAD (Certified Application Developer-ServiceNow) Certification Exam is a professional certification that validates the skills and knowledge of developers in creating applications on the ServiceNow platform. The ServiceNow platform is a cloud-based solution that provides businesses with a range of IT service management applications that help streamline processes and improve efficiency. The CAD certification exam is designed for developers who have already completed the ServiceNow Fundamentals course and have experience in developing applications on the platform.
NEW QUESTION # 30
Here is the Business Rule script template:
This type of JavaScript function is known as:
- A. Scoped
- B. Anonymous
- C. Constructor
- D. Self-invoking
Answer: A
NEW QUESTION # 31
Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?
- A. Can create, Can update, and Can delete
- B. Allow configuration
- C. All access to this table via web services
- D. Can read does not affect the availability of other Application Access fields
Answer: C
NEW QUESTION # 32
How many applications menus can an application have?
- A. 1, which is used for all application modules
- B. As many as the application design requires
- C. 2, one for an application's user modules and one for an application's administrator modules
- D. 3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
Answer: B
NEW QUESTION # 33
Modules must have a Link type. Which one of the following is a list of Link types?
- A. Assessment, List of Records, Content Page, Roles
- B. List of Records, Content Page, Order, URL (from arguments:)
- C. List of Records, Separator, Catalog Type, Roles
- D. Assessment, List of Records, Separator, Timeline Page
Answer: D
NEW QUESTION # 34
Which of the following GuideRecord methods run a query against a database table?
Choose 3 answers
- A. get(
- B. query()
- C. -get()
- D. -query( )
- E. runQuery()
Answer: A,B,D
Explanation:
https://docs.servicenow.com/bundle/tokyo-application-development/page/app-store/dev_portal/API_reference/GlideQuery/concept/GlideQueryGlobalAPI.html#GlideQueryAPI
https://docs.servicenow.com/bundle/tokyo-application-development/page/app-store/dev_portal/API_reference/glideRecordScoped/concept/c_GlideRecordScopedAPI.html
NEW QUESTION # 35
How does ServiceNow match inbound email to existing records?
- A. Record link
- B. sys_id
- C. Watermark
- D. Subject line
Answer: C
Explanation:
https://developer.servicenow.com/dev.do#!/learn/courses/tokyo/app_store_learnv2_flowdesigner_tokyo_flow_designer/app_store_learnv2_flowdesigner_tokyo_notifications_in_flow_designer/app_store_learnv2_flowdesigner_tokyo_inbound_email_and_flows
"By default, the system generates a watermark label at the bottom of each notification email to allow matching incoming email to existing records." https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/concept/c_WorkingWithWatermarks.html
NEW QUESTION # 36
Which one of the following is true regarding Application Scope?
- A. Any developer can edit any application
- B. All applications are automatically part of the Global scope
- C. Applications downloaded from 3rd party ServiceNow application developers cannot have naming conflicts
- D. Developers can choose the prefix for a scope's namespace
Answer: C
Explanation:
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_ApplicationScope.html
NEW QUESTION # 37
Which of the following CANNOT be debugged using the Field Watcher?
- A. Business Rules
- B. Script Includes
- C. Client Scripts
- D. Access Controls
Answer: B
Explanation:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/script/debugging/ concept/c_FieldWatcher.html
NEW QUESTION # 38
When configuring an Access Control which has no condition or script, which one of the following statements is NOT true?
- A. table.*will grant access to every field in a record
- B. table.id will grant access to a specific record on the table
- C. table.field will grant access to a specific field in a record
- D. table.None will grant access to every record on the table
Answer: A
NEW QUESTION # 39
Client-side scripts manage what?
- A. Playbook access
- B. Forms and Forms Fields
- C. Database and backend
- D. User access
Answer: C
Explanation:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/server-scripting/concept/c_ServerScripting.html
NEW QUESTION # 40
Which source control operation is available from BOTH Studio and the Git Repository?
- A. Stash Local Changes
- B. Create Branch
- C. Edit Repository Configurations
- D. Apply Remote Changes
Answer: C
NEW QUESTION # 41
A scoped application containing Flow Designer content dedicated to a particular application is called a(n):
- A. Flow
- B. Bundle
- C. Spoke
- D. Action
Answer: C
Explanation:
https://docs.servicenow.com/bundle/paris-servicenow-platform/page/administer/flow-designer/concept/spokes.html A spoke is a scoped application containing Flow Designer content dedicated to a particular application or record type. Flow Designer provides a set of core actions to automate Now Platform® processes. You can add application-specific core actions by activating the associated spoke.
NEW QUESTION # 42
When writing a Client Script to provide feedback targeted at a specific field, which method should be used?
- A. g_form.showFieldMsg()
- B. g_form.showInfoMessage()
- C. g_form.addInfoMessage()
- D. g_form.addFieldMsg()
Answer: A
Explanation:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/useful-scripts/reference/r_DisplayFieldMessages.html
NEW QUESTION # 43
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, c and d
- B. a, b, and d
- C. b, c and d
- D. a, b and c
Answer: D
Explanation:
Explanation/Reference: https://hi.service-now.com/kb_view.do?sysparm_article=KB0712569
NEW QUESTION # 44
When creating new application files in a scoped application, cross scope access is turned on by default in which of the following?
- A. Workflow
- B. Table
- C. Script Include
- D. REST messages
Answer: B
Explanation:
"By default, all application scope scripts can read the table's records but cannot perform any other database operations." https://developer.servicenow.com/dev.do#!/learn/learning-plans/tokyo/servicenow_administrator/app_store_learnv2_securingapps_tokyo_application_access_database_settings
NEW QUESTION # 45
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 namespace (prefix and scope name) to prevent cross application name collisions
- C. Provide a relationship between application artifacts
- D. Provide a way of tracking the user who developed an application
Answer: A
NEW QUESTION # 46
Which method is used to retrieve Application Property values in a script?
- A. gs.getAppProperty()
- B. gs.getProperty()
- C. g_form.getProperty()
- D. g_form.getAppProperty()
Answer: B
Explanation:
https://developer.servicenow.com/dev.do#!/learn/learning-plans/tokyo/new_to_servicenow/app_store_learnv2_automatingapps_tokyo_use_application_properties
NEW QUESTION # 47
Which of the following methods are useful in Access Control scripts?
- A. g_user.hasRole() and current.isNewRecord()
- B. gs.hasRole() and current.isNew()
- C. gs.hasRole() and current.isNewRecord()
- D. g_user.hasRole() and current.isNew()
Answer: C
NEW QUESTION # 48
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. Out of scope applications can create Business Rules for the table
- C. Out of scope applications can add new tables to the scoped application
- D. Any user with the application's user role can modify the application's scripts
Answer: B
Explanation:
Explanation/Reference: https://community.servicenow.com/community?
id=community_question&sys_id=1a721819dbfa23409a64e15b8a9619d2
NEW QUESTION # 49
What records are used to track cross-scope applications or scripts that request access to an application, application resource, or event?
- A. Cross-scope access records
- B. Access control level records
- C. Restricted caller access records
- D. Caller tracking records
Answer: C
Explanation:
"Restricted caller access [sys_restricted_caller_access] records track cross-scope applications or scripts that request access to an application, application resource, or event in the Now Platform." <<== this is the third sentence down in the following link: https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/concept/restricted-caller-access-privilege.html
NEW QUESTION # 50
Which of the following statements does NOT apply when extending an existing table?
- A. The new table inherits the functionality built into the parent table
- B. The parent table's Access Controls are evaluated when determining access to the new table's records and fields
- C. The new table inherits all of the fields from the parent table
- D. You must script and configure all required behaviors
Answer: A
NEW QUESTION # 51
Which of the following methods prints a message on a blue background to the top of the current form by default?
- A. g_form.showFieldMsg()
- B. g_form.showFieldMessage()
- C. g_form.addInfoMsg()
- D. g_form.addInfoMessage()
Answer: A
NEW QUESTION # 52
It is best practice to define the business requirements and the process(es) an application will manage as part of the application development plan. What are some of the considerations to document as part of the business process?
- A. Business problem, data input/output, users/stakeholders, and process steps
- B. Business problem, data input/output, project schedule, and process steps
- C. Business problem, users/stakeholders, available licenses, and database capacity
- D. Business problem, data input/output, users/stakeholders, and database capacity
Answer: A
NEW QUESTION # 53
A scoped application containing Flow Designer content dedicated to a particular application is called a(n):
- A. Flow
- B. Bundle
- C. Spoke
- D. Action
Answer: C
Explanation:
Explanation
A spoke is a scoped application containing Flow Designer content dedicated to a particular application or record type. Flow Designer provides a set of core actions to automate Now Platform processes. You can add application-specific core actions by activating the associated spoke.
NEW QUESTION # 54
Which of the following is NOT supported by Flow Designer?
- A. Use Delegated Developer
- B. Test a flow with rollback
- C. Call a subflow from a flow
- D. Run a flow from a MetricBase Trigger
Answer: B
NEW QUESTION # 55
......
The ServiceNow CAD certification exam consists of 60 multiple-choice questions that must be completed within 90 minutes. The exam covers a range of topics, including ServiceNow platform architecture, application development, scripting, user interface customization, and integrations with other systems. To pass the exam, candidates must score at least 75% or higher. Upon passing the exam, candidates will receive a certification that is valid for two years, after which they must recertify to maintain their certification status. The ServiceNow CAD certification is a valuable credential to have for developers looking to advance their careers and demonstrate their expertise in ServiceNow application development.
Easy Success ServiceNow CAD Exam in First Try: https://www.dumpsmaterials.com/CAD-real-torrent.html
Best CAD Exam Dumps for the Preparation of Latest Exam Questions: https://drive.google.com/open?id=1veGeDKMtsxhkwVvr5bkXhEzGX-MODuuB
