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?
Correct Answer: A
"The sequence is ROLES first, then condition, then script." - Chuck Tomasi says so at this link: https://www. servicenow.com/community/grc-forum/order-of-execution-of-an-acl/m-p/1311962/highlight/true#M6538
Question 132
Which one of the following is true?
Correct Answer: A
Question 133
Which one of the following is true regarding Application Scope?
Correct Answer: B
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_Applicatio The correct statement regarding Application Scope is that applications downloaded from 3rd party ServiceNow application developers cannot have naming conflicts. Application Scope is a feature that identifies and isolates applications and their related artifacts from other applications. Each scoped application has a unique namespace identifier that consists of a prefix and a scope name. This prevents cross-application name collisions and ensures that only authorized scripts canaccess or modify data in a scoped application. References: [Product Documentation | ServiceNow], [How To Create a Scoped App in ServiceNow - YouTube]
Question 134
Which one of the following is NOT a debugging strategy for client-side scripts?
Correct Answer: D
https://developer.servicenow.com/dev.do#!/learn/learning-plans/rome/new_to_servicenow /app_store_learnv2_scripting_rome_debugging_client_scripts The following are debugging strategies for client-side scripts, which run in the web browser and manipulate the user interface: * g_form.addInfoMessage(). This is a client-side API that displays an information message at the top of the form. * Field Watcher. This is a debugging tool that displays the current and previous values of one or more fields on a form. * jslog(). This is a client-side API that writes a message to the browser console. The following is not a debugging strategy for client-side scripts, but for server-side scripts, which run on the ServiceNow platform and manipulate the database: * gs.log(). This is a server-side API that writes a message to the system log. References: Client-Side Scripting APIs, Debugging Client Scripts
Question 135
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.)
Correct Answer: A,C
The following roles grant access to source control repository operations such as importing applications from source control, or linking an application to source control: * source_control. This is a role that allows users to perform basic source control operations, such as importing an application from a source control repository, updating an application from a source control repository, or committing changes to a source control repository. * admin. This is a role that grants full access to all the features and functions of the ServiceNow platform, including source control operations. Users with this role can also perform advanced source control operations, such as creating or deleting source control repositories, configuring source control properties, or resolving conflicts. The following roles do not grant access to source control repository operations: * source_control_admin. This is not a valid role in ServiceNow. There is no separate role for source control administration, as this function is included in the admin role. * git_admin. This is not a valid role in ServiceNow. Git is a specific type of source control system that ServiceNow supports, but there is no role dedicated to Git administration. References: Source Control, Source Control Roles Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/build/applications /task/ t_LinkAnApplicationToSourceControl.html