Skip to content

Instantly share code, notes, and snippets.

@snawaza243
Created January 17, 2024 04:36
Show Gist options
  • Save snawaza243/3a049e72982a9bcb61b16ea3cda04add to your computer and use it in GitHub Desktop.
Save snawaza243/3a049e72982a9bcb61b16ea3cda04add to your computer and use it in GitHub Desktop.
var questionsAndAnswers = [
{
question: "Question 1: What is the purpose of the Application Picker?",
options: [
"A. Select an application to run",
"B. Select an application as a favorite in the Application Navigator",
"C. Choose an application to edit and set the Application Scope",
"D. Choose an application to download and install"
],
correctAnswer: "C"
},
{
question: "Question 2: What are Application Files in a ServiceNow application?",
options: [
"A. An XML export of an application's table records",
"B. CSV files containing data imported into an application",
"C. ServiceNow artifacts comprising an application",
"D. XML exports of an application's Update Set"
],
correctAnswer: "C"
},
{
question: "Question 3: Which one of the following is NOT true for Modules?",
options: [
"A. Modules open content pages",
"B. Access to Modules is controlled with roles",
"C. Every Module must be part of an Application Menu",
"D. Every Module must be associated with a table"
],
correctAnswer: "D"
},
{
question: "Question 4: A graphical view of relationships among tables is a <blank>.",
options: [
"A. Schema map",
"B. Dependency view",
"C. Graphical User Interface",
"D. Map source report"
],
correctAnswer: "A"
},
{
question: "Question 5: Which one of the following is true for the Application Picker?",
options: [
"A. All custom application scope and the Global scope appear in the Application Picker",
"B. All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker",
"C. Only custom applications appear in the Application Picker",
"D. Only downloaded applications appear in the Application Picker"
],
correctAnswer: "A"
},
{
question: "Question 6: When creating an application through the Guided Application Creator, which of the following is a user experience option?",
options: [
"A. Portal",
"B. Mobile",
"C. Self-service",
"D. Workspace"
],
correctAnswer: "B"
},
{
question: "Question 7: When writing a Client Script to provide feedback targeted at a specific field, which method should be used?",
options: [
"A. g_form.showInfoMessage()",
"B. g_form.showFieldMsg()",
"C. g_form.addinfoMessage()",
"D. g_form.addFieldMsg()"
],
correctAnswer: "B"
},
{
question: "Question 8: Which actions can a Business Rule take without scripting?",
options: [
"A. Set field values and write to the system log",
"B. Set field values and generate an event",
"C. Set field values and add message",
"D. Set field values and query the database"
],
correctAnswer: "C"
},
{
question: "Question 9: Which server-side object provides methods for working with dates when writing a script in a privately scoped application?",
options: [
"A. GlideDateTime",
"B. GlideRecord",
"C. GlideSystem",
"D. current"
],
correctAnswer: "A"
},
{
question: "Question 10: Application developers can specify which ServiceNow page a user sees after submitting a new record using the Record Producer UI. How is the page specified?",
options: [
"A. Create an application property to store the URL",
"B. Configure the page in the Module that opens the Record Producer URL",
"C. Write an after Business Rule script for the Record Producer's table: window.redirect =\"<URL>\"",
"D. Write a script in the Record Producer's Script field: producer.redirect = \"<URL>\";"
],
correctAnswer: "D"
},
{
question: "Question 11: Identify characteristic(s) of a Record Producer. (Choose three.)",
options: [
"A. All records created using this strategy are inserted into the Requested Item [sc_req_item] table.",
"B. Each field prompts the user with a question rather than a field label.",
"C. They must be scripted.",
"D. You can script behaviors of fields in the user interface.",
"E. Graphics can be included on the user interface."
],
correctAnswer: "B, D, E"
},
{
question: "Question 12: Which script types execute on the server? (Choose three.)",
options: [
"A. Business Rule",
"B. Client Scripts",
"C. UI Policies",
"D. Script Actions",
"E. Scheduled Jobs"
],
correctAnswer: "A, D, E"
},
{
question: "Question 13: When creating a table in a privately-scoped application, which four Access Controls are created for the table?",
options: [
"A. Insert, Delete, Query, Write",
"B. Create, Delete, Read, Write",
"C. Create, Delete, Read, Update",
"D. Insert, Delete, Query, Update"
],
correctAnswer: "B"
},
{
question: "Question 14: Which one of the following is true for this script fragment? g_user.hasRole('x_my_app_user');",
options: [
"A. There is no g_user.hasRole() method",
"B. The method returns false only if the currently logged in user has the x_my_app_user role",
"C. The method returns true only if the currently logged in user has the x_my_app_user role",
"D. The method returns true if the currently logged in user has the x_my_app_user role or the admin role"
],
correctAnswer: "D"
},
{
question: "Question 15: Which one of the following database operations cannot be controlled with Application Access?",
options: [
"A. Query",
"B. Update",
"C. Create",
"D. Delete"
],
correctAnswer: "A"
},
{
question: "Question 16: For Application Access, there is a configuration option called Allow access to this table via web services. Which one of the following statements is true when this option is selected?",
options: [
"A. This option restricts the ability to delete records via web services, but records can always be read.",
"B. Even when not selected, users with the correct permissions can use web services to access the table's records.",
"C. This option restricts access only to SOAP web services but does not apply to REST.",
"D. The user performing the query via web services must have the correct permissions to access the table's records."
],
correctAnswer: "D"
},
{
question: "Question 17: Which of the following statements must evaluate to true for a user to pass an Access Control? (Choose three.)",
options: [
"A. The user has one of the roles specified in the Required roles related list.",
"B. Scripts configured in the Access Control must evaluate to true.",
"C. Other matching Access Controls for the records evaluate to true.",
"D. Conditions configured in the Access Control must evaluate to true.",
"E. The user must be granted access through a business rule."
],
correctAnswer: "A, B, D"
},
{
question: "Question 18: Which server-side object provides methods for working with dates when writing a script in a privately scoped application?",
options: [
"A. GlideDateTime",
"B. GlideRecord",
"C. GlideSystem",
"D. current"
],
correctAnswer: "A"
},
{
question: "Question 19: Which one of the following is NOT an example of when an application might use a Scheduled Script Execution (Scheduled Job)?",
options: [
"A. The application needs to send weekly email reminders to requestors for all records on a table",
"B. The application needs to run a clean-up script on the last day of every month",
"C. The application needs to query the database every day to look for unassigned records",
"D. The application needs to run a client-side script at the same time every day"
],
correctAnswer: "D"
},
{
question: "Question 20: Which one of the following objects CANNOT be used in a Script Action script?",
options: [
"A. previous",
"B. GlideRecord",
"C. event",
"D. current"
],
correctAnswer: "A"
},
{
question: "Question 21: How does ServiceNow match inbound email to existing records?",
options: [
"A. Watermark",
"B. Record link",
"C. Subject line",
"D. sys_id"
],
correctAnswer: "A"
},
{
question: "Question 22: When debugging Email Notifications, what must you check on a user record? (Choose three.)",
options: [
"A. Active must be true.",
"B. The First name and Last name fields must have values.",
"C. The value in the Notification field must be set to enabled.",
"D. The user must not be locked out.",
"E. The Email field must have a value."
],
correctAnswer: "A, C, E"
},
{
question: "Question 23: Which of the following methods is NOT part of the ServiceNow REST API?",
options: [
"A. COPY",
"B. GET",
"C. DELETE",
"D. POST"
],
correctAnswer: "A"
},
{
question: "Question 24: You are developing the MyApp application that has a table, Table A. When the MyApp application is installed on an instance, you want Table A's records to be installed as part of the application. Table A's records will be installed when:",
options: [
"A. Table A is active and extends the Task table",
"B. Table A's records are added to the application record using the Create Application Files context menu item",
"C. Table A has an automatic number counter for new records",
"D. Table A is not included in the System Clone > Exclude Tables list"
],
correctAnswer: "B"
},
{
question: "Question 25: How can an application link to a repository behind a firewall?",
options: [
"A. This option is not supported.",
"B. Link an application to source control through a MID Server.",
"C. Link an application to source control through an access token.",
"D. Link an application to source control with multi-factor authentication."
],
correctAnswer: "B"
},
{
question: "Question 26: What is the ServiceNow store?",
options: [
"A. Downloadable content ServiceNow script archive",
"B. Alternate name for the ServiceNow Developer Share site",
"C. The source for ServiceNow Community created developer content",
"D. Marketplace for free and paid certified ServiceNow applications and integrations"
],
correctAnswer: "D"
},
{
question: "Question 27: Which of the following objects does a Display Business Rule NOT have access to?",
options: [
"A. previous",
"B. GlideSystem",
"C. g_scratchpad",
"D. current"
],
correctAnswer: "A"
},
{
question: "Question 28: When creating an application through the Guided Application Creator, which of the following is NOT an option for creating a table?",
options: [
"A. Create table from template",
"B. Create table from scratch",
"C. Extend a table",
"D. Upload spreadsheet"
],
correctAnswer: "A"
},
{
question: "Question 29: Server-side scripts manage what?",
options: [
"A. Database and backend",
"B. Playbook access",
"C. User access",
"D. Forms and Fields"
],
correctAnswer: "A"
},
{
question: "Question 30: What intuitive development interface guides users through the initial application development process?",
options: [
"A. Guided Tour Designer",
"B. Guided Application Creator",
"C. ServiceNow Studio",
"D. Flow Designer"
],
correctAnswer: "B"
},
{
question: "Question 31: What are some benefits of developing private, scoped applications? (Choose two.)",
options: [
"A. To avoid using a code repository like GitHub or GitLab",
"B. To reduce risk at code collisions",
"C. To enable installation and uninstallation of an application",
"D. To replicate ServiceNow functions in a private scope"
],
correctAnswer: "B, C"
},
{
question: "Question 32: What records are used to track cross-scope applications or scripts that request access to an application, application resource, or event?",
options: [
"A. Restricted caller access records",
"B. Caller tracking records",
"C. Access control level records",
"D. Cross-scope access records"
],
correctAnswer: "A"
},
{
question: "Question 33: Which ATF Test step allows you to create a user with speeded roles and groups for the test?",
options: [
"A. Create a group",
"B. Impersonation",
"C. Create a user",
"D. Create a role"
],
correctAnswer: "C"
},
{
question: "Question 34: WHAT plugin enables the Guided Application Creator?",
options: [
"A. com.glide.sn-guided-app-creator",
"B. com.glide.service_creator",
"C. com.glide.snc.apps_creator",
"D. com.snc.apps_creator_template"
],
correctAnswer: "A"
},
{
question: "Question 35: Which of the following can be an external data source for a ServiceNow application?",
options: [
"A. Microsoft Excel File",
"B. Data provided by a public web service using SOAP or REST",
"C. CSV file",
"D. All of the above"
],
correctAnswer: "D"
},
{
question: "Question 36: Which one of the following is true for the Application Picker and Application Scope?",
options: [
"A. Global is a reserved application that does not appear in the Application Picker",
"B. Selecting an application from the Application Picker does not set the Application Scope",
"C. Selecting an application from the Application Picker sets the Application Scope",
"D. Selecting Global in the Application Picker sets the Application Scope to Incident"
],
correctAnswer: "C"
},
{
question: "Question 37: Which of the following is an available feature in Studio? (Choose two.)",
options: [
"A. Push to update set",
"B. Merge branches",
"C. Search code",
"D. Push to external source control"
],
correctAnswer: "C, D"
},
{
question: "Question 38: Why would you build a custom app? (Choose two.)",
options: [
"A. To avoid using a code repository like GitHub or GitLab",
"B. To replace ServiceNow base tables",
"C. To fulfill a specific use case on internal processes",
"D. To create a custom integration for a 3rd party system"
],
correctAnswer: "C, D"
},
{
question: "Question 39: Which one of the following is NOT part of the Form Designer?",
options: [
"A. Page header",
"B. Schema map",
"C. Field navigator",
"D. Form layout"
],
correctAnswer: "B"
},
{
question: "Question 40: Which one of the following is true for a Script Include with a Protection Policy value of Protected?",
options: [
"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"
],
correctAnswer: "D"
},
{
question: "Question 41: When designing and creating a form, what do you create to organize fields on a form?",
options: [
"A. Buttons",
"B. Tabs",
"C. Sections",
"D. Related lists"
],
correctAnswer: "C"
},
{
question: "Question 42: Which one of the following is a good practice for adding instructions to a form?",
options: [
"A. Related links to wiki pages",
"B. A Context Menu UI Action",
"C. Annotations",
"D. A populated read-only field"
],
correctAnswer: "C"
},
{
question: "Question 43: Which of the following GlideRecord methods run a query against a database table? (Choose three.)",
options: [
"A. _get()",
"B. runQuery()",
"C. query()",
"D. _query()",
"E. get("
],
correctAnswer: "C, D, E"
},
{
question: "Question 44: In a Business Rule, which one of the following returns the sys_id of the currently logged in user?",
options: [
"A. g_form.getUserID()",
"B. gs.getUserSysID()",
"C. gs.getUserID()",
"D. g_form.getUserSysID()"
],
correctAnswer: "C"
},
{
question: "Question 45: Access Control debug information identifies whether each element of an Access Control granted or denied access. The elements appear in the debug information in the order of evaluation. In which order are the elements of an Access Control evaluated?",
options: [
"A. Conditions, Roles, Script",
"B. Conditions, Script, Roles",
"C. Roles, Conditions, Script",
"D. Script, Conditions, Roles"
],
correctAnswer: "C"
},
{
question: "Question 46: Assume a table called table exists and contains 3 fields: field1, field2, field3. Examine the Access Control list for table:",
options: [
"table.None read Access Control for users with the admin and itil roles",
"table.* read Access Control for users with the admin role",
"table.field3 read Access Control for users with the itil role"
],
correctAnswer: "D"
},
{
question: "Question 47: Assume a table called table exists and contains 3 fields: field1, field2, field3. Examine the Access Control list for table:",
options: [
"table.None read Access Control for users with the admin and itil roles",
"table.field3 read Access Control for users with the admin role"
],
correctAnswer: "D"
},
{
question: "Question 48: Which of the following is NOT a caller access field option?",
options: [
"A. Caller Tracking",
"B. Caller Restriction",
"C. None",
"D. Caller Permission"
],
correctAnswer: "D"
},
{
question: "Question 49: Which method is used to retrieve Application Property values in a script?",
options: [
"A. gs.getProperty()",
"B. g_form.getAppProperty()",
"C. g_form.getProperty()",
"D. gs.getAppProperty()"
],
correctAnswer: "A"
},
{
question: "Question 50: What Module Link type is used to access an Application Properties page?",
options: [
"A. Single Record",
"B. HTML (from Arguments)",
"C. URL (from Arguments)",
"D. Script (from Arguments)"
],
correctAnswer: "C"
},
{
question: "Question 51: Identify the way(s) an application can respond to an Event generated by the gs.eventQueue() method.",
options: [
"A. Script Action",
"B. Scheduled Script Execution (Scheduled Job)",
"C. UI Policy",
"D. Email Notification",
"E. a and c",
"F. c",
"G. a and d"
],
correctAnswer: "G"
},
{
question: "Question 52: When troubleshooting and debugging notifications, where do you navigate to see if an email was sent in response to an event?",
options: [
"A. System Logs > Events",
"B. System Logs > Emails",
"C. System Logs > Push Notifications",
"D. System Logs > ICE Logs"
],
correctAnswer: "B"
},
{
question: "Question 53: What are the benefits of storing the majority of an Application’s server-side script logic in a Script Include?",
options: [
"A. This makes execution faster.",
"B. Only run when called from a script.",
"C. The script logic can be hidden when the Application is installed from the ServiceNow Store.",
"D. For some changes to application logic, there is only one place to make edits.",
"E. a, b, and d",
"F. a, b, c, and d",
"G. b, c, and d Most Voted",
"H. a, b, and c"
],
correctAnswer: "F"
},
{
question: "Question 54: Which of the following is NOT a Flow Designer feature?",
options: [
"A. Run a flow from a Catalog item",
"B. Call a flow from another flow or subflow",
"C. Add stages to a flow",
"D. Test a flow using the 'Run as' feature"
],
correctAnswer: "B"
},
{
question: "Question 55: What is the purpose of the coalesce field when importing data?",
options: [
"A. If a match is not found, the existing record is updated",
"B. To determine if a record matches an existing record or is a new record",
"C. To identify and merge duplicate records",
"D. When a match is found, a new record is inserted"
],
correctAnswer: "B"
},
{
question: "Question 56: If you create a SOAP Message what syntax indicates a variable to pass when the function is called?",
options: [
"A. current.variable_name",
"B. ${variable_name}",
"C. <variable_name>.do?WSDL",
"D. <variable_name>"
],
correctAnswer: "B"
},
{
question: "Question 57: Which of the following is NOT a way to install an application on a ServiceNow instance?",
options: [
"A. Install an application from the Application Repository",
"B. Select the Copy button on the application record",
"C. Download and install an application from the ServiceNow Share web site",
"D. Download and install a third-party application from the ServiceNow Store"
],
correctAnswer: "B"
},
{
question: "Question 58: Using Custom UI test step in Automated Test Framework, which of the following is NOT a testable page component?",
options: [
"A. Buttons",
"B. UI controls",
"C. UI pages",
"D. Form field values"
],
correctAnswer: "D"
},
{
question: "Question 59: Flow Designer supports variable data types to store record data and complex data. Which of the following are supported variable data types? (Choose three.)",
options: [
"A. Choice data type",
"B. Array.Reference data type",
"C. Integer data type",
"D. Freedom data type",
"E. Array.Boolean data type",
"F. Label data type"
],
correctAnswer: "A, C, E"
},
{
question: "Question 60: When creating new application files in a scoped application, cross-scope access is turned on by default in which of the following?",
options: [
"A. REST messages",
"B. Table",
"C. Script Include",
"D. Workflow"
],
correctAnswer: "B"
},
{
question: "Question 61: Which of the following statements is true for the Form Designer?",
options: [
"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."
],
correctAnswer: "D"
},
{
question: "Question 62: Which of the following are configured in an Email Notification?",
options: [
"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."
],
correctAnswer: "A"
},
{
question: "Question 63: To see what scripts, reports, and other application artifacts will be in a published application:",
options: [
"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"
],
correctAnswer: "C"
},
{
question: "Question 64: Which one of the following is NOT a debugging strategy for client-side scripts?",
options: [
"A. g_form.addInfoMessage()",
"B. Field Watcher",
"C. jslog()",
"D. gs.log()"
],
correctAnswer: "D"
},
{
question: "Question 65: Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?",
options: [
"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"
],
correctAnswer: "B"
},
{
question: "Question 66: Which of the following is NOT a trigger type in Flow Designer?",
options: [
"A. Outbound Email",
"B. Application",
"C. Record",
"D. Schedule"
],
correctAnswer: "A"
},
{
question: "Question 67: When creating new application files in a scoped application, cross-scope access is turned on by default in which of the following?",
options: [
"A. REST messages",
"B. Table",
"C. Script Include",
"D. Workflow"
],
correctAnswer: "B"
},
{
question: "Question 68: In an Email Notification, which one of the following is NOT true for the Weight field?",
options: [
"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"
],
correctAnswer: "B"
},
{
question: "Question 69: Which of the following objects does a Display Business Rule NOT have access to?",
options: [
"A. previous",
"B. GlideSystem",
"C. g_scratchpad",
"D. current"
],
correctAnswer: "A"
},
{
question: "Question 70: Which of the following features are available to Global applications? (Choose two.)",
options: [
"A. Automated Test Framework",
"B. Source Control",
"C. Delegated Development",
"D. Flow Designer"
],
correctAnswer: "A, D"
},
{
question: "Question 71: Which one of the following is NOT a UI Action type?",
options: [
"A. List choice",
"B. Form button",
"C. List banner button",
"D. Form choice"
],
correctAnswer: "D"
},
{
question: "Question 72: Which of the following is NOT supported by Flow Designer?",
options: [
"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"
],
correctAnswer: "B"
},
{
question: "Question 73: Which of the following are true for reports in ServiceNow? (Choose three.)",
options: [
"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."
],
correctAnswer: "B, D, E"
},
{
question: "Question 74: Modules must have a Link type. Which one of the following is a list of Link types?",
options: [
"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"
],
correctAnswer: "B"
},
{
question: "Question 75: Which one of the following is true for a table with the “Allow configuration’ Application Access option selected?",
options: [
"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"
],
correctAnswer: "C"
},
{
question: "Question 76: 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"
],
correctAnswer: "B"
},
{
question: "Question 77: Which one of the following is true?",
options: [
"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"
],
correctAnswer: "A"
},
{
question: "Question 78: Here is the Business Rule script template:",
options: [
"(function executeRule (current, previous */null when async*/) {",
"}) (current, previous);",
"This type of JavaScript function is known as:",
"A. Constructor",
"B. Scoped",
"C. Anonymous",
"D. Self-invoking"
],
correctAnswer: "D"
},
{
question: "Question 79: Which method call returns true only if the currently logged in user has the catalog_admin role and in no other case?",
options: [
"A. g_user.hasRole(‘catalog_admin’)",
"B. g_user.hasRoleExactly(‘catalog_admin’)",
"C. g_user.hasRoleOnly(‘catalog_admin’)",
"D. g_user.hasRoleFromList(‘catalog_admin’)"
],
correctAnswer: "B"
},
{
question: "Question 80: There is a basic strategy when creating a Utils Script Include. Identify the step that does not belong.",
options: [
"A. Identify the table",
"B. Script the function(s)",
"C. Create a class",
"D. Create a prototype object from the new class"
],
correctAnswer: "A"
},
{
question: "Question 81: 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.)",
options: [
"A. source_control",
"B. source_control_admin",
"C. admin",
"D. git_admin"
],
correctAnswer: "A, C"
},
{
question: "Question 82: When configuring the content of an Email Notification, which syntax should be used to reference the properties of an event triggering the Notification?",
options: [
"A. ${event.<property name>}",
"B. ${current.<property name>}",
"C. ${<property name>.getDisplayValue()}",
"D. ${gs.<property name>}"
],
correctAnswer: "A"
},
{
question: "Question 83: Which one of the following is true for a Script Include with a Protection Policy value of Protected?",
options: [
"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"
],
correctAnswer: "D"
},
{
question: "Question 84: Which one of the following is true for GlideUser (g_user) methods?",
options: [
"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 Script Includes"
],
correctAnswer: "C"
},
{
question: "Question 85: When configuring a module, what does the Override application menu roles configuration option do?",
options: [
"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"
],
correctAnswer: "A"
},
{
question: "Question 86: Which platform feature can be used to determine the relationships between fields in an Import Set table to fields in an existing ServiceNow table?",
options: [
"A. Business Service Management Map",
"B. Data Sources",
"C. Transform Map",
"D. CI Relationship Builder"
],
correctAnswer: "C"
},
{
question: "Question 87: When configuring a REST Message, the Endpoint is:",
options: [
"A. The commands to the REST script to stop execution",
"B. The URI of the data to be accessed, queried, or modified",
"C. Information about the format of the returned data",
"D. The response from the provider indicating there is no data to send back"
],
correctAnswer: "B"
},
{
question: "Question 88: When evaluating Access Controls, ServiceNow searches and evaluates:",
options: [
"A. Only for matches on the current table",
"B. Only for matches on the current field",
"C. From the most specific match to the most generic",
"D. From the most generic match to the most specific match"
],
correctAnswer: "C"
},
{
question: "Question 89: In a Business Rule, which one of the following returns true if the currently logged-in user has the admin role?",
options: [
"A. g_form.hasRoleExactly('admin')",
"B. gs.hasRole('admin')",
"C. g_form.hasRole('admin')",
"D. gs.hasRoleExactly('admin')"
],
correctAnswer: "B"
},
{
question: "Question 90: From the list below, identify one reason an application might NOT be a good fit with ServiceNow. The application:",
options: [
"A. Needs workflow to manage processes",
"B. Requires a€as-isa€ use of low-level programming libraries",
"C. Requires reporting capabilities",
"D. Uses forms extensively to interact with data"
],
correctAnswer: "B"
},
{
question: "Question 91: Identify the incorrect statement about Delegated Development in ServiceNow.",
options: [
"A. Administrators can grant non-admin users the ability to develop global applications.",
"B. Administrators can specify which application file types the developer can access.",
"C. Administrators can grant the developer access to script fields.",
"D. Administrators can grant the developer access to security records."
],
correctAnswer: "A"
},
{
question: "Question 92: One of the uses of the ServiceNow REST API Explorer is:",
options: [
"A. Practice using REST to interact with public data providers",
"B. Find resources on the web for learning about REST",
"C. Convert SOAP Message functions to REST methods",
"D. Create sample code for sending REST requests to ServiceNow"
],
correctAnswer: "D"
},
{
question: "Question 93: Which one of the following is true regarding Application Scope?",
options: [
"A. All application are automatically part of the Global scope",
"B. Applications downloaded from 3 party ServiceNow application developers cannot have naming conflicts rd",
"C. Any developer can edit any application",
"D. Developers can choose the prefix for a scope's namespace."
],
correctAnswer: "B"
},
{
question: "Question 94: Which one of the following is the baseline behavior of a table in a privately-scoped application?",
options: [
"A. The table and its data are not accessible using web services",
"B. Any Business Rule can read, write, delete, and update from the table",
"C. Only artifacts in the table's application can read from the table",
"D. All application scopes can read from the table"
],
correctAnswer: "D"
},
{
question: "Question 95: Which one of the following is NOT a purpose of application scoping?",
options: [
"A. Provide a relationship between application artifacts",
"B. Provide a way of tracking the user who developed an application",
"C. Provide a namespace (prefix and scope name) to prevent cross application name collisions",
"D. Provide controls for how scripts from another scope can alter tables in a scoped application"
],
correctAnswer: "B"
},
{
question: "Question 96: 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?",
options: [
"A. Business problem, data input/output, users/stakeholders, and process steps",
"B. Business problem, data inputioutput, project schedule and process steps",
"C. Business problem, data input/output, users/stakeholders, and database capacity",
"D. Business problem, users/stakeholders, available licenses, and database capacity"
],
correctAnswer: "A"
},
{
question: "Question 97: Which of the following statements does NOT apply when extending an existing table?",
options: [
"A. The parent table's Access Controls are evaluated when determining access to the new table's records and fields",
"B. The new table inherits the functionality built into the parent table",
"C. The new table inherits all of the fields from the parent table",
"D. You must script and configure all required behaviors"
],
correctAnswer: "D"
},
{
question: "Question 98: Which of the following CANNOT be debugged using the Field Watcher?",
options: [
"A. Business Rules",
"B. Script Includes",
"C. Client Scripts",
"D. Access Controls"
],
correctAnswer: "B"
},
{
question: "Question 99: Which objects can be used in Inbound Action scripts?",
options: [
"A. current and previous",
"B. current and email",
"C. current and event",
"D. current and producer"
],
correctAnswer: "B"
},
{
question: "Question 100: Which one of the following is part of the client-side scripting API?",
options: [
"A. workflow.scratchpad",
"B. GlideUser object (g_user)",
"C. current and previous objects",
"D. GlideSystem object (gs)"
],
correctAnswer: "B"
},
{
question: "Question 101: Application developers configure ServiceNow using industry standard JavaScript to:",
options: [
"A. Enable the right-click to edit the context menus on applications in the navigator",
"B. Extend and add functionality",
"C. Customize the organization's company logo and banner text",
"D. Configure the outgoing email display name"
],
correctAnswer: "B"
},
{
question: "Question 102: How many applications menus can an application have?",
options: [
"A. 3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's 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. 1, which is used for all application modules"
],
correctAnswer: "B"
},
{
question: "Question 103: The source control operation used to store local changes on an instance for later application is called a(n):",
options: [
"A. Branch",
"B. Tag",
"C. Stash",
"D. Update set"
],
correctAnswer: "C"
},
{
question: "Question 104: What syntax is used in a Record Producer script to access values from Record Producer form fields?",
options: [
"A. producer.field_name",
"B. producer.variablename",
"C. current.variable_name",
"D. current.field_name"
],
correctAnswer: "A"
},
{
question: "Question 105: Which of the following methods prints a message on a blue background to the top of the current form by default?",
options: [
"A. g_form.addInfoMsg()",
"B. g_form.addInfoMessage()",
"C. g_form.showFieldMessage()",
"D. g_form.showFieldMsg()"
],
correctAnswer: "B"
},
{
question: "Question 106: A scoped application containing Flow Designer content dedicated to a particular application is called a(n):",
options: [
"A. Spoke",
"B. Bundle",
"C. Action",
"D. Flow"
],
correctAnswer: "A"
},
{
question: "Question 107: What is a Module?",
options: [
"A. The functionality within an application menu such as opening a page in the content frame or a separate tab or window",
"B. A group of menus, or pages, providing related information and functionality to end-users",
"C. A way of helping users quickly access information and services by filtering the items in the Application Navigator",
"D. A web-based way of providing software to end-users"
],
correctAnswer: "A"
},
{
question: "Question 108: Which source control operation is available from BOTH Studio and the Git Repository?",
options: [
"A. Create Branch",
"B. Apply Remote Changes",
"C. Stash Local Changes",
"D. Edit Repository Configurations"
],
correctAnswer: "A"
},
{
question: "Question 109: Which one of the following is NOT required to link a ServiceNow application to a Git repository?",
options: [
"A. Password",
"B. URL",
"C. User name",
"D. Application name"
],
correctAnswer: "D"
},
{
question: "Question 110: Which Report Type(s) can be created by right-clicking on a column header in a table's list?",
options: [
"A. Bar Chart, Pie Chart, Histogram, and Line",
"B. Bar Chart",
"C. Bar Chart, Pie Chart, and Histogram",
"D. Bar Chart and Pie Chart"
],
correctAnswer: "D"
},
{
question: "Question 111: Which one of the following is NOT a method used for logging messages in a server-side script for a privately-scoped application?",
options: [
"A. gs.log()",
"B. gs.error()",
"C. gs.warn()",
"D. gs.debug()"
],
correctAnswer: "A"
},
{
question: "Question 112: If the Create module field is selected when creating a table, what is the new module's default behavior?",
options: [
"A. Open an empty form so new records can be created",
"B. Open a link to a wiki article with instructions on how to customize the behavior of the new module",
"C. Display an empty homepage for the application",
"D. Display a list of all records from the table"
],
correctAnswer: "D"
},
{
question: "Question 113: How must Application Access be configured to prevent all other private application scopes from creating configuration records on an application's data tables?",
options: [
"A. 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",
"B. Set the Accessible from field value to All application scopes and de-select the Can create option",
"C. Set the Accessible from field value to This application scope only and de-select the Allow access to this table via web services option",
"D. Set the Accessible from field value to This application scope only"
],
correctAnswer: "D"
},
{
question: "Question 114: What are some of the benefits of extending an existing table such as the Task table when creating a new application?",
options: [
"A. You can repurpose existing fields by simply changing the label.",
"B. Use existing fields with no modifications.",
"C. Existing logic from the parent table will be automatically applied to the new table.",
"D. All of the parent table records are copied to the new table."
],
correctAnswer: "A, B, C"
},
{
question: "Question 115: When configuring an Access Control which has no condition or script, which one of the following statements is NOT true?",
options: [
"A. table.* will grant access to every field in a record",
"B. table.None will grant access to every record on the table",
"C. table.field will grant access to a specific field in a record",
"D. table.id will grant access to a specific record on the table"
],
correctAnswer: "D"
},
{
question: "Question 116: Which of the following methods are useful in Access Control scripts?",
options: [
"A. g_user.hasRole() and current.isNewRecord()",
"B. gs.hasRole() and current.isNewRecord()",
"C. g_user.hasRole() and current.isNew()",
"D. gs.hasRole() and current.isNew()"
],
correctAnswer: "B"
},
{
question: "Question 117: Which one of the following client-side scripts apply to Record Producers?",
options: [
"A. Catalog Client Scripts and Catalog UI Policies",
"B. UI Scripts and UI Actions",
"C. UI Scripts and Record Producer Scripts",
"D. Client Scripts and UI Policies"
],
correctAnswer: "A"
},
{
question: "Question 118: When a ServiceNow instance requests information from a web service, ServiceNow is the web service:",
options: [
"A. Publisher",
"B. Specialist",
"C. Provider",
"D. Consumer"
],
correctAnswer: "D"
},
{
question: "Question 119: Which one of the following is the fastest way to create and configure a Record Producer?",
options: [
"A. Create a Catalog Category, open the category, and select the Add New Record Producer button",
"B. Use the Record Producer module then add and configure all variables manually",
"C. Open the table in the Table records and select the Add to Service Catalog Related Link",
"D. Open the table's form, right-click on the form header, and select the Create Record Producer menu item"
],
correctAnswer: "C"
},
{
question: "Question 120: Which objects can you use in a Scheduled Script Execution (Scheduled Job) script?",
options: [
"A. GlideRecord and current",
"B. GlideUser and GlideRecord",
"C. GlideSystem and GlideRecord",
"D. GlideSystem and current"
],
correctAnswer: "C"
},
{
question: "Question 121: Can inherited fields be deleted from a table?",
options: [
"A. Yes, select the red X in the left-most column in the table definition",
"B. Yes, but only if they are text fields",
"C. Yes, but only if there has never been any saved field data",
"D. No, inherited fields cannot be deleted from a child table"
],
correctAnswer: "D"
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment