ServiceNow App Dev Cert Prep3 2023 with 100% correct questions and answers
Which one is true about UI Policies and UI Policies Action UI Policy Actions then UI Action script TRUE/FALSE: The Script Action is only triggered by an event TRUE TRUE/FALSE: Script Actions are active by default? FALSE What is the purpose of the REST endpoint? The URL of the data to be retrieved, updated, or deleted Which of the following are not accessible by a Script Action? previous What is the purpose of the Registry? A list of all defined events Which of the following methods can be used in a Business Rule? Role() How do you retrieve the current userid within a Business Rule? UserID() Which of the following methods can be used in an ACL? Role(), NewRecord() Which of the following describe a Record Producer? Insert a record in a table Which of the following is true when: - Accessible from: All application scopes - Allow configuration selected. - Can Read is selected. - Can Update is selected. An admin in the same scope can create a Business Rule. Which of the following is true if Allow configuration is selected? An admin in the same scope can create a Business Rule. Which of the following is true when Can Read is not selected? Can Update, Can Delete, Can Create are not visible. Which application access field(s) will be affected when Can Read is not selected? Can Create, Can Update, Can Delete Which of the following are not operations of Application Access? query Which of the following can be used to place a report on a Homepage? Gauge An application has a table named MyTable with the following three fields: field1, field2, field3. T is set for read for the Admin and Itil roles. T3 is set for the read by the Admin role only. What with the Itil role be able to read? field1, field2 Can an inherited field be deleted in the child table? No What happens when you delete a field in a table? Data in the field is lost Which of the following are true about the document feed? - Right clicking on the header and accessing it from the context menu., - A document feed is a live feed group that is associated with a record, such as an incident or change. What are the parts of the Form Designer? Page Header, Field Navigator, Form Layout What will g_Role('x_app_custom') return? True if the user has role 'x_app_custom' What command would you use to retrieve an Application property in a Business Rule? Property() 4 REST API methods: PUT, GET, DELETE, PATCH 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? Auto Map Matching fields How many menus can an application have? 1 What is the purpose of the Web Service API tool? Creating a script for other web services to call into ServiceNow Which of the following describe a Workflow Context? A copy of the original, that is being executed TRUE/FALSE: When using Form Designer, dragging a section out from the Field Type tab to create a section. FALSE TRUE/FALSE: Form Designer also creates a field in the list view FALSE Which of the following describes the order that is evaluated for an Access Control? Role, Condition, Script Which of the following statements about Email Notifications is correct? - A list of users and groups determined dynamically in the script. -. A list of email addresses determined when the notification is created. - Dynamic users and groups determined when the email is sent. "There was a question where a business rule script template was shown and you were asked to identify what type of function it was. (function executeRule(current, previous...) {})(current,previous)" is known as a? Self-invoking function / Immediate Invoking Function Expression (IIFE) What objects are available in an inbound email action? current, email What is true about Application Scope and Application Picker? Selecting an Application automatically sets the scope to the Application's scope TRUE/FALSE: Adding a field to a form automatically adds it to the default list view FALSE TRUE/FALSE: Adding a field to the table automatically adds it to the end of the form FALSE In Form Designer, when you edit the label of a field on a child table, the label is updated on: Child table What is not a reason to run a scheduled job? Run a client script at a scheduled time What is true about homepages on mobile There are no homepages on mobile TRUE/FALSE: When a new field is added on the form view, is it added to the list default automatically? FALSE TRUE/FALSE: When an application is created, are ACL's mandatory? FALSE TRUE/FALSE: When a REST webservice is authenticated, it never needs to authenticate again FALSE What is the name of the development instances that are not the parent in Team Development environments Sub-Dev instances TRUE/FALSE: Using Team Development you can promote code to any environment or instance in the heirarchy FALSE TRUE/FALSE: Local change list shows changes that have been promoted to another environment FALSE What does the code search feature do in studio? - Searching in all applications, - Search from a list of applications, - Searching in a business rule What does the link to source control do in Studio? Supplies a connection to GIT What roles can enter the source control path? Admin When creating a table which of the following are automatically done when Create a new module is checked? List of records in that table What is the benefit of defining properties in an Application? Your users can make necessary changes without modifying application artifacts What is the benefit of creating an application? - Applications do not interfere with each other - Extending the ServiceNow baseline functionality TRUE/FALSE: You change the namespace of an Application after it has been created? FALSE TRUE/FALSE: Can you change the Application prefix? (i.e. x_snc) FALSE What is the name of the tab that shows all of your application artifacts in the Custom Application? Application files How do you include data with your Custom Application? Create Application Files TRUE/FALSE: Assume an application scope, sn_my_app, exists. Scripts from other application scopes can never delete records from tables in the sn_my_app scope. FALSE The Application Access settings for a table are: a. Global application scope b. All application scopes c. This application scope d. ServiceNow application scope b) B and C TRUE/FALSE: Chart is not a Report Type in ServiceNow? TRUE TRUE/FALSE: Team Development uses Git to manage versions. FALSE Which type of chart can be created from the List View? Pie and Donut Which one below is used to pass value when sending a SOAP message? ${variable} What gets inherited when extending a table? - All fields belonging to or inherited by the parent table - ACLs How do you access variables in a Record Producer script? ble_name When does the script run on a Record Producer? Upon submission When an ACL is validated in debug, how is it represented? Blue circle with a white checkmark What is the difference between a BusinessRule Debug and BusinessRule debug with details? Conditions and values are being met or set as expected TRUE/FALSE: When an application is created, are ACL's mandatory? FALSE TRUE/FALSE: All instances should be on the same version of ServiceNow (Team Development) TRUE What does override application menu mean? Allows for a user with the role to view an application module even if they do not have the roles to view the application What is the prefix for request fulfillment tables? sc_ What is the prefix for custom scoped applications? x_ How are event parameters referenced? 1, 2 How is a properties page configured in a module in the left navigation? URL In an email notification, how do you call a parameter from an event that invoked the email? What does the field watcher do? What types of configurations does it monitor? - Access Controls, - Client Scripts Does a new application automatically get added to the Mobile version's navigation by default? No How do you query records in servicenow? - .query() - ._query() - .get() If the delete option is NOT selected in the application settings, can a business rule created inside that application delete all records? No What is the purpose of javascript in servicenow? - Extend ServiceNow functionality - Change the "from" address of sent emails TRUE/FALSE: Form choice is a UI Action? FALSE If the script section of an ACL is empty, does it return true or false? True Which may be used in a scheduled job? - GlideScript, - GlideRecord If a UI Policy has a script and UI Policy actions, in what order are they processed? Actions first Which of the following is used test in tablet mode? What is true about email notifications? - What - When - Who TRUE/FALSE: A Script Action has access to the previous object FALSE TRUE/FALSE: The Reference Field ID is the same as a sys_id of a reference table TRUE Which of the following are characteristics of a Record Producer - Use these variable types to collect data for the corresponding field types, - UI form for the user What does the following search indicate? Assigned to is the currently logged in User Which of the following variables are available in all Business Rules? - current, - previous, - GlideSystem When creating a table if the Create Access control is selected what are the four Access Controls that are also created? Read, Write, Create, Delete By default is the user role created automatically when the Application is created? Yes What type of web-service is ServiceNow if it requests information from a web-service? Consumer What is the quickest way to create a Record Producer? From the Table creator tool go to the Related Links and click Add to Service Catalog Which of the following can trigger a workflow? - UI Action, - Business Rule, - Script Action, - Scheduled Job, - Workflow conditions Which of the following scripts do not always run on the server side? UI Action Which of the following API methods are used when working with datetime in a privately scoped application? GlideDateTime TRUE/FALSE: System properties can use Reference as a Data Type FALSE Which of the following would keep other applications from adding configuration records into a scoped application's table? Allow Configuration In what order are ServiceNow Access Controls evaluated? field, table What would happen if the related links "Preview Script Usage" of an Outbound SOAP function is clicked? Open a popup that displays a sample script to use this SOAP method TRUE/FALSE: In Email Notifications, weight 0 means that email is not sent FALSE In Email Notifications, which statement below about the recipient is correct? A static list of users and groups determined when the notification is created. Which method is used in emulating mobile for testing? $ Which of the following provide special field messages? FieldMessage() Which of the following describe the ServiceNow Store? - Where to download an application, - Offical Page of ServiceNow, - Location to purchase ServiceNow Applications What is the WaterMark in an Email Notification? "Ref:" and a customizable prefix Which of the following is not a valid Script Include property? Client Callable TRUE/FALSE: Will the client-side functionality of Flash work in both desktop and mobile? FALSE YES/NO: Can you use Form Designer to design list layouts? No TRUE/FALSE: When importing data by CSV there only one coalesce field FALSE TRUE/FALSE: jslog() is used to write to the JavaScript log TRUE TRUE/FALSE: Can you use both Role and g_Role in an ACL? FALSE
Written for
- Institution
- ServiceNow App Dev Cert Prep3
- Course
- ServiceNow App Dev Cert Prep3
Document information
- Uploaded on
- February 13, 2023
- Number of pages
- 10
- Written in
- 2022/2023
- Type
- Exam (elaborations)
- Contains
- Questions & answers
Subjects
-
servicenow app dev cert prep3 2023 with 100 correct questions and answers
-
truefalse the script action is only triggered by an event true
-
truefalse script actions are active by default false
-
wh