[2025年04月13日] 合格させるServiceNow CAD日本語試験情報と無料練習テスト
CAD日本語試験問題集PDF更新された問題集にはFast2test試験合格保証付き
質問 # 17
特定の分野を対象としたフィードバックを提供するためにクライアント スクリプトを作成する場合、どの方法を使用する必要がありますか?
- A. g_form.addInfoMessage()
- B. g_form.addFieldMsg()
- C. g_form.showFieldMsg()
- D. g_form.showInfoMessage()
正解:C
解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/useful-scripts/reference/r_Displa
質問 # 18
次のうち、UIアクションタイプではないものはどれですか?
- A. リストバナーボタン
- B. フォームボタン
- C. リストの選択
- D. フォームの選択
正解:D
解説:
A UI Action is a button, link, or choice that can be clicked by a user to perform an action, such as submitting a form or running a script. The following are UI Action types:
List choice. This is a UI Action that appears as a choice list on a list of records. It can be used to perform an action on multiple records at once, such as deleting or updating them.
Form button. This is a UI Action that appears as a button on a form. It can be used to perform an action on the current record, such as saving or approving it.
List banner button. This is a UI Action that appears as a button on the banner of a list of records. It can be used to perform an action on the entire list, such as exporting or printing it.
The following is not a UI Action type:
Form choice. This is not a UI Action type, but a field type. A form choice is a field that displays a choice list on a form. It can be used to select a value from a predefined set of options, such as priority or state. Reference: UI Actions, Field Types
質問 # 19
テーブル Table A を持つ MyApp アプリケーションを開発しています。
MyApp アプリケーションをインスタンスにインストールするときに、テーブル A のレコードをアプリケーションの一部としてインストールする必要があります。
テーブル A のレコードは、次の場合にインストールされます。
- A. [アプリケーション ファイルの作成] コンテキスト メニュー項目を使用して、テーブル A のレコードがアプリケーション レコードに追加されます。
- B. テーブル A がアクティブで、タスク テーブルを拡張します。
- C. テーブル A には、新しいレコードの自動番号カウンターがあります。
- D. テーブル A は [システム クローン] > [テーブルを除外] リストに含まれていません
正解:A
解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/task/t_IncludeApplicationData.html
質問 # 20
SOAP メッセージを作成する場合、関数の呼び出し時に渡す変数はどのような構文で示されますか?
- A. 現在の.変数_名
- B. < 変数名 >
- C. S{変数名}
- D. < 変数名 >.do?WSDL
正解:C
解説:
In the SOAP Message feature set, we indicate variables using the following syntax: S{variable_name}. This allows us to pass a variable with the specified name from the SOAP message record to the web service function.
References:
* Tutorial: Handling a SOAP Response in ServiceNow | John Andersen
* ServiceNow SOAP - Cheat Sheet Cheat Sheet by bibingokuldas - Download ...
質問 # 21
特定のアプリケーション専用のFlowDesignerコンテンツを含むスコープアプリケーションは、a(n)と呼ばれます。
- A. スポーク
- B. フロー
- C. アクション
- D. バンドル
正解:A
解説:
https://docs.servicenow.com/bundle/paris-servicenow-platform/page/administer/flow-designer/concept/spokes.ht 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.
質問 # 22
プライベートスコープのアプリケーションでのテーブルのベースライン動作は、次のうちどれですか?
- A. テーブルとそのデータはWebサービスを使用してアクセスできません
- B. テーブルのアプリケーション内のアーティファクトのみがテーブルから読み取ることができます
- C. すべてのアプリケーションスコープはテーブルから読み取ることができます
- D. すべてのビジネスルールは、テーブルから読み取り、書き込み、削除、および更新できます
正解:C
解説:
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_DefaultDesignAccessPermissions.html
質問 # 23
アプリケーション開発者は、業界標準のJavaScriptを使用してServiceNowを構成します...
- A. 右クリックを有効にして、ナビゲーターでアプリケーションのコンテキストメニューを編集します
- B. 機能の拡張と追加
- C. 組織の会社のロゴとバナーテキストをカスタマイズする
- D. 送信メールの表示名を設定します
正解:B
解説:
Application developers configure ServiceNow using industry standard JavaScript to extend and add functionality. JavaScript is a scripting language that enables developers to create dynamic and interactive web pages, as well as manipulate data and logic on the server-side. ServiceNow provides various APIs and frameworks for developers to use JavaScript to customize and enhance the functionality of their applications, such as client scripts, UI policies, business rules, script includes, UI actions, and more. References:
[ServiceNow Docs - JavaScript in ServiceNow], [ServiceNow Docs - Scripting in ServiceNow]
質問 # 24
次のうち、クライアント側スクリプトのデバッグ戦略ではないものはどれですか?
- A. gs.log()
- B. Field Watcher
- C. g_form.addInfoMessage()
- D. jslog()
正解:A
解説:
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. Reference: Client-Side Scripting APIs, Debugging Client Scripts
質問 # 25
ユーザーがアクセス コントロールに合格するには、次のステートメントが true と評価される必要があるのはどれですか?
3 つの答えを選択してください
- A. ユーザーはビジネス ルールを通じてアクセスを許可される必要があります。
- B. ユーザーは、[必要な役割] 関連リストで指定された役割の 1 つを持っています。
- C. アクセス コントロールで設定された条件は true と評価される必要があります。
- D. アクセス コントロールで構成されたスクリプトは true と評価される必要があります。
- E. レコードに一致する他のアクセス制御は true と評価されます。
正解:B、C、D
解説:
The statements that must evaluate to true for a user to pass an Access Control are:
Conditions configured in the Access Control must evaluate to true.
The user has one of the roles specified in the Required roles related list.
Scripts configured in the Access Control must evaluate to true.
An Access Control is a rule that determines whether a user can access a particular object or operation in ServiceNow. An Access Control consists of three elements: Conditions, Roles, and Script. Each element specifies a requirement that the user must meet to access the object or operation. If any of these elements return false, the Access Control denies access and stops evaluating the remaining elements. Therefore, for a user to pass an Access Control, all three elements must evaluate to true.
The other statements are not required for a user to pass an Access Control. Other matching Access Controls for the records do not need to evaluate to true, as only one matching Access Control needs to return true for access to be granted. The user does not need to be granted access through a business rule, as business rules are not part of Access Controls and do not affect their evaluation. Reference: Access control rules, Access Controls
質問 # 26
次のうち、フィールドウォッチャーを使用してデバッグできないものはどれですか?
- A. クライアントスクリプト
- B. アクセス制御
- C. スクリプトに含まれるもの
- D. ビジネスルール
正解:C
質問 # 27
次のうち、UIアクションタイプではないものはどれですか?
- A. リストバナーボタン
- B. フォームボタン
- C. リストの選択
- D. フォームの選択
正解:D
解説:
A UI Action is a button, link, or choice that can be clicked by a user to perform an action, such as submitting a form or running a script. The following are UI Action types:
List choice. This is a UI Action that appears as a choice list on a list of records. It can be used to perform an action on multiple records at once, such as deleting or updating them.
Form button. This is a UI Action that appears as a button on a form. It can be used to perform an action on the current record, such as saving or approving it.
List banner button. This is a UI Action that appears as a button on the banner of a list of records. It can be used to perform an action on the entire list, such as exporting or printing it.
The following is not a UI Action type:
Form choice. This is not a UI Action type, but a field type. A form choice is a field that displays a choice list on a form. It can be used to select a value from a predefined set of options, such as priority or state. References: UI Actions, Field Types
質問 # 28
次のうち正しいものはどれですか?
- A. UIポリシーのスクリプトとアクションの実行順序は実行時に決定されます
- B. UIポリシーのアクションは、UIポリシーのスクリプトの前に実行されます
- C. UIポリシーのアクションとスクリプトが同時に実行されます
- D. UIポリシーのスクリプトは、UIポリシーのアクションの前に実行されます
正解:D
質問 # 29
アプリケーションはいくつのアプリケーションメニューを持つことができますか?
- A. 3、1つはアプリケーションのユーザーモジュール用、1つはアプリケーションの管理者モジュール用、もう1つはServiceNow管理者のモジュール用
- B. 2、1つはアプリケーションのユーザーモジュール用、もう1つはアプリケーションの管理者モジュール用
- C. アプリケーションの設計に必要な数
- D. 1、これはすべてのアプリケーションモジュールに使用されます
正解:C
解説:
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]
質問 # 30
Flow Designer では、フロー内の後続のアクションで使用できるようにアクションのデータはどこに保存されますか?
- A. データピル
- B. データ要素
- C. フィールド値
- D. フィールドアイコン
- E. データトリガー
正解:A
質問 # 31
table というテーブルが存在し、field1、field2、field3 の 3 つのフィールドが含まれているとします。テーブルのアクセス制御リストを調べます。
itil ロールを持つユーザーはどのフィールドを読み取ることができますか?
- A. すべてのフィールド
- B. フィールド 1 およびフィールド 3
- C. field3 を除くすべてのフィールド
- D. フィールド 3 のみ
正解:C
解説:
https://docs.servicenow.com/bundle/tokyo-platform-security/page/administer/contextual-security/concept/access
質問 # 32
......
あなたを合格させるServiceNow試験にはCAD日本語試験問題集:https://jp.fast2test.com/CAD-JPN-premium-file.html