For your implementation the following tables are extended from each other:
* Incident table is extended from Task table
* Super Incident table is extended from Incident table
In this situation, which table(s) are Parent. Child and Base tables?
Choose 5 answers
Answer : A, B, D, F, G
The source control operation used to store local changes on an instance for later application is called a(n)
Answer : C
The source control operation used to store local changes on an instance for later application is called a stash. A stash is a temporary storage area for uncommitted changes that are not ready to be pushed to a remote repository. Developers can use stashes to save their work in progress without committing it to the local repository or discarding it. Stashes can be applied later to restore the changes to the working directory, or dropped if they are no longer needed. Reference: [ServiceNow Docs - Stash local changes], [ServiceNow Docs - Source control]
Which one of the following database operations cannot be controlled with Application Access?
Answer : D
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.
Application Access
[GlideRecord methods]
Which one of the following is NOT a purpose of application scoping?
Answer : A
The purpose of application scoping is NOT to provide a way of tracking the user who developed an application. Application scoping does not store or display information about the user who created or modified an application or its artifacts. The purpose of application scoping is to provide a relationship between application artifacts, provide a namespace to prevent cross-application name collisions, and provide controls for how scripts from another scope can alter tables in a scoped application. Reference: [Product Documentation | ServiceNow], [Advantages of Scoped Applications in ServiceNow]
What is a Module?
Answer : A
https://docs.servicenow.com/bundle/rome-platform-user-interface/page/administer/navigation-and-ui/task/t_CreateAModule.html
A module is the functionality within an application menu such as opening a page in the content frame or a separate tab or window. For example, Open is a module under the Problem application menu that opens a list of problem records. Modules are the second level navigation options for applications. Reference:Modules | ServiceNow Tutorials
Here is the Business Rule script template:
This type of JavaScript function is known as:
Answer : D
Self-invoking. Learn JavaScript!
This type of JavaScript function is known as self-invoking or immediately-invoked function expression (IIFE). It is a function that is defined and executed at the same time, without being assigned to a variable or being called by another function. It is often used to create a local scope for variables and avoid polluting the global namespace. Reference: [W3Schools - JavaScript Function Definitions], [MDN Web Docs - Immediately-invoked function expressions]
The Report Designer contains different sections for configuring your report. Which section is used to specify the name of the report, and the table or data source for the report.
Answer : D