CAD日本語問題集で2026年最新のServiceNow CAD日本語試験問題 [Q121-Q146]

Share

CAD日本語問題集で2026年最新のServiceNow CAD日本語試験問題

無料で使えるCAD日本語ブレーン問題集でダウンロード(CAD日本語テスト問題集無料更新された)

質問 # 121
後のアプリケーションのためにインスタンスにローカルの変更を保存するために使用されるソース管理操作は、a(n)と呼ばれます。
<空白>。

  • A. スタッシュ
  • B. アップデートセット
  • C. ブランチ
  • D. タグ

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


質問 # 122
レコード データと複雑なデータを保存するために、フロー デザイナー変数のどのようなデータ型がサポートされていますか?
3 つの答えを選択してください

  • A. 配列。参照
  • B. 整数
  • C. 選択肢
  • D. ラベルのデータ型
  • E. 文字列

正解:A、B、E

解説:
Flow Designer variables can store record data and complex data using the following data types:
* Integer: A whole number that can be used in mathematical operations.
* Array: A collection of items that can be accessed by their index or iterated over using a For each action.
* String: Any kind of text, such as email addresses or the text contents of a file.
Define and Use Data Types in a Flow (Flow Designer)
Variable data types - Power Automate | Microsoft Learn
Product Documentation | ServiceNow


質問 # 123
レコード データを保存するためにサポートされているフロー変数のどのデータ型がサポートされていますか?
3つの回答を選択してください

  • A. 選択
  • B. 整数
  • C. 文字列
  • D. 日付
  • E. 配列

正解:A、E


質問 # 124
RESTメッセージを構成する場合、エンドポイントは次のとおりです。

  • A. 返送するデータがないことを示すプロバイダーからの応答
  • B. アクセス、クエリ、または変更されるデータのURI
  • C. 実行を停止するためのRESTスクリプトへのコマンド
  • D. 返されたデータの形式に関する情報

正解:B

解説:
When configuring a REST Message, the Endpoint is:
* The URI of the data to be accessed, queried, or modified. This is the correct answer because the Endpoint is the part of the REST Message that specifies the location and the resource of the REST provider. The Endpoint is composed of the base URL and the resource path, which can include query parameters or variables. For example, the Endpoint for a REST Message that retrieves the weather information for a city from a web service could be
https://api.openweathermap.org/data/2.5/weather?q=London.
The following are not correct definitions of the Endpoint when configuring a REST Message:
* The commands to the REST script to stop execution. This is not correct because the commands to the REST script to stop execution are not part of the REST Message, but of the Scripted REST API, which is a feature that allows users to create custom REST endpoints on the ServiceNow platform. The commands to the REST script to stop execution are methods of the RESTAPIResponse object, such as setStatusCode, setError, or complete.
* Information about the format of the returned data. This is not correct because the information about the format of the returned data is not part of the Endpoint, but of the HTTP headers or the Accept field of the REST Message. The HTTP headers or the Accept field can be used to specify the content type of the response, such as JSON, XML, or HTML.
* The response from the provider indicating there is no data to send back. This is not correct because the response from the provider indicating there is no data to send back is not part of the Endpoint, but of the HTTP status code or the response body of the REST Message. TheHTTP status code or the response body can be used to indicate the result of the REST request, such as 200 OK, 404 Not Found, or 500 Internal Server Error. References: REST Messages, Scripted REST APIs


質問 # 125
顧客にインシデント フォームを見せているときに、優先度フィールドのタイトルを変更して社内用語の値を表示するように依頼されました。どのように変更しますか?
2つの回答を選択してください

  • A. 優先度を右クリックして辞書の設定を選択します
  • B. 優先度を右クリックして、ディスプレイ設定の構成を選択します。
  • C. 優先度を右クリックして列の設定を選択します。
  • D. 優先度を右クリックしてラベルの設定を選択します。

正解:A、D


質問 # 126
スクリプトでアプリケーション プロパティの値を取得するために使用される方法はどれですか?

  • A. gs.getAppProperty()
  • B. g_form.getProperty()
  • C. g_form.getAppProperty()
  • D. gs.getProperty()

正解:D

解説:
https://developer.servicenow.com/dev.do#!/learn/learning-plans/tokyo/new_to_servicenow
/app_store_learnv2_automatingapps_tokyo_use_application_properties


質問 # 127
基本テーブルから拡張テーブルを構築する場合、どのフィールドを作成する必要がありますか?
2つの回答を選択してください

  • A. 拡張テーブルに固有のフィールド
  • B. ベーステーブルに存在しないフィールド
  • C. 基本テーブルの参照フィールド。
  • D. 基本テーブルの必須フィールド

正解:A、B


質問 # 128
次の方法のどれがデフォルトで現在のフォームの上部に青い背景にメッセージを印刷しますか?

  • A. g_form.showFieldMsg()
  • B. g_form.addInfoMessage()
  • C. g_form.showFieldMessage()
  • D. g_form.addInfoMsg()

正解:B

解説:
From: https://docs.servicenow.com/bundle/paris-application-development/page/script/general-scripting/reference/r_ScriptingAlertInfoAndErrorMsgs.html g_form.showFieldMsg("field_name", "Hello World", "error"); Puts "Hello World" in an error message **below the specified field**. g_form.addInfoMessage() or g_form.addErrorMessage() place a blue box message at the top of the screen. Pg 126 of the CAD handbook


質問 # 129
ServiceNowのレポートに当てはまるのは次のうちどれですか? (3つ選択してください。)

  • A. 電子メールで実行および配布するようにスケジュールできます。
  • B. 許可されたユーザーがオンデマンドで実行できます。
  • C. データをグラフィカルに表現できます。
  • D. すべてのユーザーが共有されているレポートを表示できます。
  • E. すべてのユーザーが任意のテーブルでレポートを生成できます。

正解:B、C、D


質問 # 130
ユーザーがアクセス制御に合格するには、次のステートメントのうちどれが true と評価される必要がありますか? (3 つの回答を選択)

  • A. アクセス制御で構成されたスクリプトは true と評価される必要があります。
  • B. レコードのその他の一致するアクセス制御は true と評価されます。
  • C. ユーザーは、必要なロール関連リストで指定されたロールのいずれかを持っています。
  • D. ユーザーにはビジネス ルールを通じてアクセス権を付与する必要があります。
  • E. アクセス制御で構成された条件は true と評価される必要があります。

正解:A、C、E

解説:
In ServiceNow, Access Controls (ACLs) determine the permissions required for users to access or modify data. For a user to pass an Access Control, the following conditions must be met:
* Conditions configured in the Access Control must evaluate to true: Access Controls can have specific conditions set in the "Condition" field. These conditions are evaluated against the current record, and must return true for the Access Control to grant access.
* The user has one of the roles specified in the Required roles related list: Access Controls can specify certain roles that a user must possess to gain access. If the user holds at least one of these roles, this criterion is satisfied.
* Scripts configured in the Access Control must evaluate to true: Access Controls can include scripts that perform more granular checks. The script must execute without errors and return true for the user to pass the Access Control.
Option A is incorrect because Business Rules do not grant access; they are server-side scripts that execute based on record operations but do not control security permissions.
Option D is misleading. Each Access Control is evaluated independently. While multiple Access Controls can apply to a single operation, passing one does not inherently grant access unless it is the most specific match.
For more detailed information, refer to the official ServiceNow documentation on Access Controls:
servicenow.com


質問 # 131
アプリケーション メニューとモジュールへのアクセスはどのように制御されますか?

  • A. 役割
  • B. アクセス制御
  • C. クライアント スクリプト
  • D. アプリケーション ルール

正解:A

解説:
Roles are used to control access to applications and modules in the application navigator. Each application menu or module has a role field that specifies which role is required to view it. Users who do not have the specified role or a role that contains it will not see the application menu or module. Roles can also be used to control access to other features and capabilities in ServiceNow, such as tables, fields, scripts, and workflows.
Reference = Enable or disable an application menu or module, Grant a role access to applications and modules, Controlling access to applications and modules.


質問 # 132
フォーム上で、クリックすると関連付けられたレコードのプレビューを表示できるこのアイコンがあるフィールドの種類はどれですか?

  • A. クイックビュー
  • B. スナップショット
  • C. プレビュー
  • D. 検索
  • E. 参照
  • F. ドリルダウン

正解:E


質問 # 133
ServiceNowのレポートに当てはまるのは次のうちどれですか? (3つ選択してください。)

  • A. 許可されたユーザーがオンデマンドで実行できます。
  • B. 電子メールで実行および配布するようにスケジュールできます。
  • C. データをグラフィカルに表現できます。
  • D. すべてのユーザーが共有されているレポートを表示できます。
  • E. すべてのユーザーが任意のテーブルでレポートを生成できます。

正解:A、B、C

解説:
https://docs.servicenow.com/bundle/rome-platform-administration/page/administer/reference-pages/task/schedule-report.html Generate and distribute scheduled reports via email.
A report is a graphical representation of data from one or more tables in ServiceNow. The following are true for reports in ServiceNow:
Can be a graphical representation of data. This is true because reports can use various chart types, such as pie, bar, line, or gauge, to visualize data in a meaningful way.
Can be run on demand by authorized users. This is true because reports can be accessed from the Reports menu or the Report Navigator and run by users who have the appropriate roles and permissions to view the data.
Can be scheduled to be run and distributed by email. This is true because reports can be configured to run at a specific time and frequency and send the results to one or more email recipients.
The following are not true for reports in ServiceNow:
Any user can see any report shared with them. This is false because users can only see reports that are shared with them if they also have access to the data source of the report. For example, a user who does not have the itil role cannot see a report based on the incident table, even if the report is shared with them.
All users can generate reports on any table. This is false because users can only generate reports on tables that they have access to and that are enabled for reporting. For example, a user who does not have the admin role cannot generate reports on the sys_user table, which is the table for user records. References: Reports, Report Security


質問 # 134
ServiceNowインスタンスがWebサービスに情報を要求する場合、ServiceNowは次のWebサービスです。

  • A. スペシャリスト
  • B. プロバイダー
  • C. 消費者
  • D. 出版社

正解:C

解説:
When a ServiceNow instance requests information from a web service, ServiceNow is the web service consumer. A web service consumer is an application that sends requests to a web service provider and receives responses from it. A web service provider is an application that exposes its functionality as web services. A web service publisher is a person or organization that publishes web services for others to use. A web service specialist is a person who has expertise in developing or using web services. Reference: Web services Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/integrate/web- services/ reference/r_AvailableWebServices.html


質問 # 135
スクリプト内で Before Business Rule がアクセスできるオブジェクトは次のどれですか。

  • A. 上記のすべて
  • B. 現在の
  • C. グライドレコード
  • D. 前

正解:D


質問 # 136
特定のアプリケーション専用のFlowDesignerコンテンツを含むスコープアプリケーションは、a(n)と呼ばれます。

  • A. アクション
  • B. フロー
  • C. スポーク
  • D. バンドル

正解:C

解説:
https://docs.servicenow.com/bundle/paris-servicenow-platform/page/administer/flow-designer/concept/spokes.
html
A spoke is a scoped application containing Flow Designer content dedicated to a particular application or record type. Flow Designer provides a set of core actions to automate Now Platform processes. You can add application-specific core actions by activating the associated spoke.


質問 # 137
電子メール通知のコンテンツを構成する場合、通知をトリガーするイベントのプロパティを参照するためにどの構文を使用する必要がありますか?

  • A. $ {プロパティ名> .getDisplayValue()}
  • B. $ {current。<プロパティ名>}
  • C. $ {gs。<プロパティ名>}
  • D. $ {イベント。<プロパティ名>}

正解:D

解説:
https://www.servicenow.com/community/it-service-management-forum/email-notification/m-p/695221 Reference: https://community.servicenow.com/community? id=community_QUESTION NO:
&sys_id=e017cbe5db1cdbc01dcaf3231f9619a3
When configuring the content of an Email Notification, the following syntax should be used to reference the properties of an event triggering the Notification:
event.<propertyname>.
ThisisthecorrectsyntaxtoaccessthepropertiesoftheeventrecordthattriggeredtheEmailNotification,suchasevent.
name,event.parm1,orevent.parm2.Forexample,{event.parm1} will display the value of the first parameter of the event.
The following syntaxes are not correct for referencing the properties of an event triggering the Notification:
current.<propertyname>.Thisisthesyntaxtoaccessthepropertiesofthecurrentrecordthatisassociatedwiththeevent, suchascurrent.number,current.shortdescription,orcurrent.state.Forexample,{current.short_description} will display the short description of the current record.
${property name>.getDisplayValue()}. This is the syntax to access the display value of a property of the current record, such as current.state.getDisplayValue(), current.assigned_to.getDisplayValue(), or current.
category.getDisplayValue(). For example, current.state.getDisplayValue() will display the state of the current record in a human-readable format, such as New, In Progress, or Closed.
${gs.<property name>}. This is the syntax to access the properties of the GlideSystem (gs) object, which provides methods for performing system operations, such as gs.now(), gs.getUserID(), or gs.getProperty().
For example, gs.now() will display the current date and time of the system. References: Email Notifications, Email Notification Variables


質問 # 138
アプリケーション開発計画の一部として、アプリケーションが管理するビジネス要件とプロセスを定義することをお勧めします。ビジネスプロセスの一部として文書化する際の考慮事項は何ですか?

  • A. ビジネス上の問題、データの入出力、プロジェクトのスケジュール、およびプロセスの手順
  • B. ビジネス上の問題、ユーザー/利害関係者、利用可能なライセンス、およびデータベース容量
  • C. ビジネス上の問題、データの入出力、ユーザー/利害関係者、およびデータベースの容量
  • D. ビジネス上の問題、データの入力/出力、ユーザー/利害関係者、およびプロセスの手順

正解:D

解説:
It is best practice to define the business requirements and the process(es) an application will manage as part of the application development plan. The following are some of the considerations to document as part of the business process:
Business problem. This is the description of the problem or opportunity that the application is intended to address or exploit. It should include the background, context, scope, and objectives of the problem or opportunity.
Data input/output. This is the specification of the data that the application will need to collect, store, manipulate, and display. It should include the data sources, formats, validations, transformations, and integrations of the data.
Users/stakeholders. This is the identification of the users and stakeholders who will be involved in or affected by the application. It should include the roles, responsibilities, expectations, and needs of the users and stakeholders.
Process steps. This is the definition of the steps and activities that the application will perform or support. It should include the inputs, outputs, triggers, conditions, and outcomes of each step or activity.
The following are not some of the considerations to document as part of the business process:
Project schedule. This is the estimation of the time and resources required to complete the application development project. It should include the milestones, deliverables, dependencies, and risks of the project. This is not part of the business process, but part of the project management plan.
Database capacity. This is the measurement of the amount of data that the application will generate and store in the database. It should include the data volume, growth rate, retention policy, and backup strategy of the data. This is not part of the business process, but part of the technical design and architecture of the application.
Available licenses. This is the number and type of licenses that the application will consume or require from the ServiceNow platform. It should include the license model, cost, and allocation of the licenses. This is not part of the business process, but part of the financial and legal aspects of the application. Reference: Application Development Process, Business Process Analysis


質問 # 139
インポート セット テーブル内のフィールドと既存の ServiceNow テーブル内のフィールドとの関係を決定するのはどれですか?

  • A. データソース
  • B. マップの変換
  • C. ビジネス サービス管理マップ
  • D. スキーママップ関係ビルダー

正解:B

解説:
Comprehensive and Detailed In-Depth Explanation:
In ServiceNow, when importing data from external sources, the data is first loaded into an Import Set table, which acts as a staging area. To move this data into an existing ServiceNow table (known as the target table), a Transform Map is used. A Transform Map is a set of field mappings that define the relationships between fields in the Import Set table and fields in the target table. This mapping ensures that data is accurately transformed and transferred to the correct fields in the target table during the import process. Therefore, the correct answer is C. Transform Map.
The other options are not related to this specific function:
* A. Business Service Management Map: This is not a standard term used in the context of data import and transformation in ServiceNow.
* B. Data Sources: These define the origin of the data being imported but do not handle the field mapping between Import Set tables and target tables.
* D. Schema Map Relationship Builder: This tool visualizes the relationships between tables in the database schema but is not used for mapping fields during data transformation.
For more detailed information, refer to the official ServiceNow documentation on Transform Maps.


質問 # 140
保護ポリシー値がProtectedのスクリプトインクルードに当てはまるのは次のうちどれですか?

  • A. 保護ポリシーオプションは、管理者ロールを持つユーザーのみが有効にできます
  • B. 保護ポリシーは、アプリケーションがServiceNow AppStoreからダウンロードされた場合にのみ適用されます
  • C. protected_editロールを持つすべてのユーザーは、スクリプトインクルードを表示および編集できます
  • D. 保護ポリシーは、glide.app.apply_protectionシステムプロパティ値がtrueの場合にのみ適用されます

正解:A


質問 # 141
ソース管理からアプリケーションをインポートしたり、アプリケーションをソース管理にリンクしたりするなど、ソース管理リポジトリ操作へのアクセスを許可する役割はどれですか? (2つ選択してください。)

  • A. source_control_admin
  • B. source_control
  • C. admin
  • D. git_admin

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


質問 # 142
特定の分野を対象としたフィードバックを提供するためにクライアント スクリプトを作成する場合、どの方法を使用する必要がありますか?

  • A. g_form.addInfoMessage()
  • B. g_form.showFieldMsg()
  • C. g_form.showInfoMessage()
  • D. g_form.addFieldMsg()

正解:B

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


質問 # 143
電子メール通知をデバッグするとき、ユーザー レコードで何を確認する必要がありますか?
2 つの答えを選択してください

  • A. Active は true である必要があります。
  • B. 電子メール フィールドには有効な値が必要です。
  • C. 委任を有効にする必要があります。
  • D. ユーザーはロックアウトされてはなりません。
  • E. 名フィールドと姓フィールドには値が必要です。

正解:A、B

解説:
To receive email notifications, a user must have an active account and a valid email address in the user record. If either of these conditions is not met, the user will not be able to receive any email notifications from the system.
Reference:
Create an email notification
Example scripting for email notifications


質問 # 144
Import Setテーブルのフィールドと既存のServiceNowテーブルのフィールドとの関係を決定するために使用できるプラットフォーム機能はどれですか?

  • A. ビジネスサービス管理マップ
  • B. データソース
  • C. マップの変換
  • D. Clリレーションシップビルダー

正解:C

解説:
Explanation
A transform map determines the relationships between fields displaying in an Import Set table and fields in an existing ServiceNow table, such as the Incidents or Users table.


質問 # 145
なぜカスタムアプリを構築するのですか?

  • A. GiotHub や GitLab などのコード リポジトリの使用を避けるため
  • B. 満たすことは、内部プロセスの特定のユース ケースです。
  • C. サードパーティ システムのカスタム統合を作成するには
  • D. servieNow ベース テーブルを置き換えるには

正解:B

解説:
A possible reason to build a custom app is to fulfill a specific use case on internal processes. For example, you may want to digitize a manual process that is not covered by an existing ServiceNow solution, such as managing inventory, tracking expenses, or scheduling events. Building a custom app on the Now Platform can help you automate workflows, improve data quality, and provide better user experiences. The other options are not valid reasons to build a custom app. To avoid using a code repository like GitHub or GitLab is not a reason to build a custom app, as you can still use source control integration with your custom app development. To create a custom integration for a 3rd party system is not a reason to build a custom app, as you can use integration tools such as IntegrationHub or REST APIs to connect with external systems without creating an app. To replace ServiceNow base tables is not a reason to build a custom app, as it is not recommended to modify or delete base tables that are essential for ServiceNow functionality. Reference: Build Custom Apps in ServiceNow - eBook


質問 # 146
......

検証済みのCAD日本語問題集と解答で合格保証で試験問題集テストエンジン:https://www.jpntest.com/shiken/CAD-JPN-mondaishu

弊社を連絡する

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

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡