最新のServiceNow CADのPDFと問題集で(2024)無料試験問題解答 [Q15-Q32]

Share

最新のServiceNow CADのPDFと問題集で(2024)無料試験問題解答

あなたを合格させるCertified Application Developer CAD試験問題集で2024年07月07日には141問あります


ServiceNow CAD(Certified Application Developer-ServiceNow)認定試験は、ServiceNowプラットフォームでアプリケーションと統合を構築する開発者の知識とスキルをテストするように設計されています。この認定は、カスタムアプリケーションの開発、ワークフローの実装、ServiceNowの統合に関する専門知識を実証したい開発者に最適です。この試験に合格することにより、開発者はServiceNowプラットフォームに高品質のアプリケーションと統合を設計、開発、展開する能力を実証できます。


CAD試験では、ServiceNowプラットフォームアーキテクチャ、アプリケーション開発、データモデリング、統合など、さまざまなトピックをカバーしています。この試験は、ベストプラクティスと業界基準を使用してServiceNowアプリケーションを設計、開発、および実装する候補者の能力をテストするように設計されています。試験に合格するには、候補者は、ServiceNowの開発とカスタマイズの概念に関する知識、およびこの知識を実際のシナリオに適用する能力を実証する必要があります。試験に合格すると、候補者はServiceNow CAD認定を取得し、ServiceNowアプリケーションの開発とカスタマイズに関する専門知識を検証します。


ServiceNow CAD認定試験は、ServiceNowの基礎、アプリケーションの設計と開発、データ管理、ユーザーエクスペリエンス、セキュリティとアクセス制御、インテグレーションなど、幅広いトピックをカバーしています。試験は60の多肢選択問題で構成され、受験者は90分以内に試験を完了する必要があります。試験に合格するためには、受験者は少なくとも70%のスコアを獲得する必要があります。試験はオンラインで受けることができ、受験者は自分の都合に合わせて受験することができます。試験に合格すると、受験者はServiceNowアプリケーション開発の専門知識を認められる証明書を受け取ります。

 

質問 # 15
How does ServiceNow match inbound email to existing records?

  • A. sys_id
  • B. Record link
  • C. Watermark
  • D. Subject line

正解:C

解説:
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


質問 # 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?

  • A. The user performing the query via web services must have the correct permissions to access the table's records
  • 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. This option restricts the ability to delete records via web services but records can always be read

正解:A

解説:
Application Access is a feature that allows you to control the access level of other application scopes to your application's data tables. By selecting the Allow access to this table via web services option, you can enable other application scopes to access your data tables using web services, such as SOAP or REST. However, the user performing the query via web services must have the correct permissions to access the table's records. The user must have the appropriate roles and access controls to perform the operations on the table, such as create, read, write, or delete.
The other statements are not true when this option is selected. This option does not restrict the ability to delete records via web services, nor does it allow records to be always read. The access to the records depends on the user's permissions and the web service method. This option also does not restrict access only to SOAP web services, but applies to both SOAP and REST web services. Finally, this option is not the only way to enable web service access to the table's records. Even when this option is not selected, users with the correct permissions can use web services to access the table's records, as long as they specify the application scope in the web service request.
Reference:
Application Access
Web service access to scoped applications


質問 # 17
In an Email Notification, which one of the following is NOT true for the Weight field?

  • A. A Weight value of zero means the Notification is always sent when the Notification's When to send criteria is met
  • B. Only Notifications with the highest weight for the same record and recipients are sent
  • C. The Weight value defaults to zero
  • D. A Weight value of zero means that no email should be sent

正解:D

解説:
https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html
https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/new_to_servicenow/app_store_learnv2_automatingapps_quebec_when_to_send The Weight field in an Email Notification determines which notification is sent when multiple notifications are triggered for the same record and recipients. Only the notification with the highest weight is sent. A weight value of zero means the notification is always sent when the notification's When to send criteria is met. A weight value of -1 means that no email should be sent3. References: Email Notification Weight


質問 # 18
Which of the following features are available to Global applications? (Choose two.)

  • A. Flow Designer
  • B. Source Control
  • C. Delegated Development
  • D. Automated Test Framework

正解:A、D

解説:
Global applications can use Automated Test Framework and Flow Designer features, but not Source Control and Delegated Development features. Source Control and Delegated Development features are only available to scoped applications . References: [Global vs Scoped Applications], [Delegated Development]


質問 # 19
Here is the Business Rule script template:

This type of JavaScript function is known as:

  • A. Self-invoking
  • B. Anonymous
  • C. Scoped
  • D. Constructor

正解:A

解説:
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]


質問 # 20
Which of the following CANNOT be debugged using the Field Watcher?

  • A. Access Controls
  • B. Script Includes
  • C. Client Scripts
  • D. Business Rules

正解:A

解説:
The Field Watcher is a debugging tool that allows you to monitor the values of fields on a form as they change due to scripts or other actions. It can be used to debug Business Rules, Client Scripts, and Access Controls, but not Script Includes. Script Includes are server-side scripts that define reusable functions and classes. They are not associated with any specific field or form, and therefore cannot be watched by the Field Watcher.
Reference:
Field Watcher
Script Includes


質問 # 21
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.addInfoMessage()
  • C. g_form.addFieldMsg()
  • D. g_form.showInfoMessage()

正解:A

解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/useful-scripts/reference/r_DisplayFieldMessages.html


質問 # 22
What are web services?

  • A. Methods used to discover a wide variety of systems and applications
  • B. They provide a customer-facing view of available service and product offerings provided by departments within the organization
  • C. Methods used to create and maintain Ul Pages
  • D. Methods used to allow applications to connect to other software applications over a network

正解:D

解説:
Web services are software systems that use standardized protocols and formats, such as XML and HTTP, to exchange data and messages between different applications or systems over the Internet or other networks12. Web services enable interoperability and integration among diverse software components, regardless of their programming languages, platforms, or architectures34.
Reference = 1: What are Web Services? - GeeksforGeeks 2: Web service - Wikipedia 3: What are Web Services? - Online Tutorials Library 4: What is a Web Service? | Webopedia


質問 # 23
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?

  • A. Roles, Conditions, Script
  • B. Conditions, Roles, Script
  • C. Script, Conditions, Roles
  • D. Conditions, Script, Roles

正解: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


質問 # 24
What is a Module?

  • A. A web-based way of providing software to end-users
  • B. The functionality within an application menu such as opening a page in the content frame or a separate tab or window
  • C. A group of menus, or pages, providing related information and functionality to end-users
  • D. A way of helping users quickly access information and services by filtering the items in the Application Navigator

正解:D


質問 # 25
Which of the following statements is true about Guided Application Creator?

  • A. The global scope option is turned on by default
  • B. The welcome screen appears every time a new application is created
  • C. A scope application user role is automatically created
  • D. Default access controls are automatically created

正解:B

解説:
The welcome screen appears every time a new application is created through the Guided Application Creator. The welcome screen provides an overview of the steps involved in creating an application, such as defining the app name, scope, and tables, configuring the app user interface, and publishing the app. The other options are not true about the Guided Application Creator. The global scope option is turned off by default, as it is recommended to create applications in their own scope for better security and performance. A scope application user role is not automatically created, as the user can choose to create one or use an existing role for the app access control. Default access controls are not automatically created, as the user can define the read, write, create, and delete permissions for each table in the app. Reference: Guided App Creator


質問 # 26
When configuring a module, what does the Override application menu roles configuration option do?

  • 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

正解:A

解説:
Checkbox tooltip: "Show this module when the user has the specified roles. Otherwise the user must have the roles specified by both the application menu and the module."


質問 # 27
The source control operation used to store local changes on an instance for later application is called a(n)
<blank>.

  • A. Tag
  • B. Branch
  • C. Update set
  • D. Stash

正解:D

解説:
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. References: [ServiceNow Docs - Stash local changes], [ServiceNow Docs - Source control]


質問 # 28
Assume a table called table exists and contains 3 fields: field1. field2, field3. Examine the Access Control list for table:
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
Which field or fields can a user with the itil role read?

  • A. field1, field2. andfield3
  • B. field3 only
  • C. field 1 andfield3
  • D. All fields except field3

正解:B

解説:
An Access Control list (ACL) defines what data users can access and how they can access it in ServiceNow tables1. The ACL evaluates the user roles and the conditions defined in the ACL rules to determine the user's access level2. In this case, the ACL rules for the table are as follows:
* table.None read Access Control for users with the admin and itil roles: This means that users with the admin or itil roles cannot read any field in the table unless there is a more specific rule that grants them access3.
* table. * read Access Control for users with the admin role: This means that users with the admin role can read all fields in the table.
* table. field3 read Access Control for users with the itil role: This means that users with the itil role can read only the field3 in the table.
Therefore, a user with the itil role can read only the field3 in the table, and not the other fields.
References = 1: Access Control Lists - ServiceNow Docs 2: How ACL Rules Are Evaluated - ServiceNow Docs 3: Access Control List Rules - ServiceNow Docs : Wildcard in ACL Rules - ServiceNow Docs :
Field-Level ACL Rules - ServiceNow Docs


質問 # 29
Which one of the following is true for the Application Picker?

  • A. All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker
  • B. Only downloaded applications appear in the Application Picker
  • C. Only custom applications appear in the Application Picker
  • D. All custom application scope and the Global scope appear in the Application Picker

正解:D

解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/task/t_SelectAnAppFromTheAppPicker.html


質問 # 30
How must Application Access be configured to prevent all other private application scopes from creating configuration records on an application's data tables?

  • A. Set the Accessible from field value to This application scope only
  • B. Set the Accessible from field value to This application scope only and de-select the Allow access to this table via web services option
  • C. 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
  • D. Set the Accessible from field value to All application scopes and de-select the Can create option

正解:C

解説:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/build/applications/ concept/c_ExampleGrantingAccessToConfigRecs.html


質問 # 31
How many applications menus can an application have?

  • A. As many as the application design requires
  • B. 3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
  • C. 1, which is used for all application modules
  • D. 2, one for an application's user modules and one for an application's administrator modules

正解:A

解説:
Reference:
An application can have as many application menus as the application design requires. An application menu is a container for application modules, which are links to features or functionalities within an application. Application menus are displayed in the application navigator, which is the left sidebar of the ServiceNow interface. Developers can create and configure application menus using Studio or the Application Menus module. Application menus can have different roles and visibility settings, depending on the intended audience and purpose of the application. References: [ServiceNow Docs - Application menus], [ServiceNow Docs - Create an application menu]


質問 # 32
......

CAD問題集はCertified Application Developer認証済み試験問題と解答:https://jp.fast2test.com/CAD-premium-file.html

CAD無料試験学習ガイド!(更新された141問あります):https://drive.google.com/open?id=1-Xlu6VtUOBNhNXWXpPUV5fT7XOBSNwPA


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어