
更新された2024年06月テストエンジンに練習CAD日本語テスト問題
CAD日本語リアル試験問題テストエンジン問題集トレーニングには141問あります
質問 # 35
アプリケーションのサーバー側スクリプト ロジックの大部分をスクリプト インクルードに格納する利点は何ですか?
a) これにより、実行が速くなります。
b) スクリプトから呼び出された場合にのみ実行します。
c) ServiceNow ストアからアプリケーションをインストールすると、スクリプト ロジックを非表示にすることができます。d. アプリケーション ロジックの一部の変更では、編集を行う場所が 1 か所しかありません。
- A. a、b、c
- B. b、c、d
- C. a、b、c、および d
- D. a、b、d
正解:B
解説:
https://developer.servicenow.com/dev.do#!/learn/courses/tokyo/app_store_learnv2_scripting_tokyo_scripting_in_servicenow/app_store_learnv2_scripting_tokyo_server_side_scripting/app_store_learnv2_scripting_tokyo_script_includes
質問 # 36
次の方法のうち、アクセス制御スクリプトで役立つのはどれですか?
- A. gs.hasRole()およびcurrent.isNew()
- B. gs.hasRole()およびcurrent.isNewRecord()
- C. g_user.hasRole()およびcurrent.isNewRecord()
- D. g_user.hasRole()およびcurrent.isNew()
正解:B
解説:
Access Control scripts are server-side scripts that run when an Access Control rule is evaluated. They can use the gs and current objects to access the GlideSystem and GlideRecord methods, respectively. Some of the useful methods in Access Control scripts are:
gs.hasRole() - This method checks if the current user has a specified role. It returns true if the user has the role, and false otherwise. For example, gs.hasRole('admin') will return true if the user is an administrator, and false otherwise.
current.isNewRecord() - This method checks if the current record is a new record that has not been inserted into the database yet. It returns true if the record is new, and false otherwise. For example, current.isNewRecord() will return true if the record is being created, and false if the record is being updated or deleted.
The methods g_user.hasRole() and current.isNew() are not part of the server-side scripting API. They are part of the client-side scripting API, which is used in Client Scripts and UI Policies. They cannot be used in Access Control scripts.
References:
[Access Control scripts]
[GlideSystem methods]
[GlideRecord methods]
質問 # 37
ServiceNowの委任された開発に関する誤ったステートメントを特定します。
- A. 管理者は、開発者にセキュリティレコードへのアクセスを許可できます。
- B. 管理者は、開発者にスクリプトフィールドへのアクセスを許可できます。
- C. 管理者は、開発者がアクセスできるアプリケーションファイルの種類を指定できます。
- D. 管理者は、管理者以外のユーザーにグローバルアプリケーションを開発する機能を付与できます。
正解:C
質問 # 38
クライアント側のスクリプトは何を管理しますか?
- A. ユーザーアクセス
- B. プレイブックへのアクセス
- C. フォームとフォーム フィールド
- D. データベースとバックエンド
正解:D
解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/server-scripting/concept/c_ServerScripting.html
質問 # 39
ServiceNow は受信メールを既存のレコードとどのように照合しますか?
- A. 透かし
- B. 件名
- C. 記録リンク
- D. sys_id
正解:A
解説:
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
質問 # 40
アクセス制御を評価する場合、ServiceNowは以下を検索して評価します。
- A. 現在のテーブルの一致のみ
- B. 最も一般的な一致から最も具体的な一致まで
- C. 最も具体的な一致から最も一般的な一致まで
- D. 現在のフィールドでの一致のみ
正解:C
解説:
https://developer.servicenow.com/dev.do#!/learn/learning-plans/paris/new_to_servicenow/app_store_learnv2_securingapps_paris_access_controls_evaluation_order
質問 # 41
アプリケーションのスコープを変更することはできますか?
- A. いいえ、それは不可能です。
- B. はい、可能です。
- C. はい。ただし、プライベート スコープからグローバル スコープへのみ
- D. はい、ただしグローバル スコープからプライベート スコープへのみ
正解:B
解説:
It is possible to change an application's scope in ServiceNow, either from global to private or from private to global. However, changing the scope of an application may affect its functionality and compatibility with other applications. Therefore, it is recommended to test the application thoroughly before and after changing its scope.
References:
* How To Change Application Scope In ServiceNow - YouTube
* How to move Custom Scoped Applications bettween instances - ServiceNow
* Steps to switch a scoped application from your company's application repository to update sets - ServiceNow
* How to change the application (scope) of a SLA Definition without needing to recreate the SLA Definition - ServiceNow
* Advantages of Scoped Applications in ServiceNow - QualityClouds
質問 # 42
次のうち、フォーム デザイナーの一部ではないものはどれですか?
- A. スキーマ マップ
- B. ページ ヘッダー
- C. フィールドナビゲーター
- D. フォームのレイアウト
正解:A
解説:
https://developer.servicenow.com/dev.do#!/learn/courses/sandiego/app_store_learnv2_learnmore_sandiego_learn The Form Designer is a tool that allows you to create and customize forms on the ServiceNow platform. The Form Designer has four main components:
* Form layout: The form layout shows the preview of the form and allows you to drag and drop fields, sections, and related lists onto the form. You can also resize, reorder, and delete the elements on the form layout.
* Page header: The page header shows the name of the table and the form that you are editing. You can also access the form properties, save the form, and switch to the form view from the page header.
* Field navigator: The field navigator shows the list of available fields for the table and allows you to search, filter, and add fields to the form. You can also create new fields and edit existing fields from the field navigator.
* Schema map: The schema map is not part of the Form Designer. The schema map is a separate tool that shows the relationships between tables and fields on the platform. You can access the schema map from the System Definition > Tables module or from the context menu of a table.
References:
* [Form Designer]
* [Schema map]
質問 # 43
Utils Script Includeを作成するときは、基本的な戦略があります。属していないステップを特定します。
- A. 関数のスクリプトを作成します
- B. クラスを作成する
- C. テーブルを特定する
- D. 新しいクラスからプロトタイプオブジェクトを作成します
正解:C
質問 # 44
クライアント側のスクリプトは何を管理しますか?
- A. ユーザーアクセス
- B. プレイブックへのアクセス
- C. フォームとフォーム フィールド
- D. データベースとバックエンド
正解:C
解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/server-scripting/concept/c_ServerScripting.html
質問 # 45
次のうち、アプリケーションがスケジュールされたスクリプトの実行 (スケジュールされたジョブ) を使用する可能性がある場合の例ではないものはどれですか?
- A. アプリケーションは、毎日同じ時刻にクライアント側スクリプトを実行する必要があります
- B. アプリケーションは、毎月の最終日にクリーンアップ スクリプトを実行する必要があります。
- C. アプリケーションは、割り当てられていないレコードを探すために毎日データベースにクエリを実行する必要があります
- D. アプリケーションは、テーブルのすべてのレコードのリクエスタに毎週電子メール リマインダーを送信する必要があります。
正解:A
質問 # 46
次のうち正しいものはどれですか?
- A. UIポリシーのスクリプトとアクションの実行順序は実行時に決定されます
- B. UIポリシーのアクションは、UIポリシーのスクリプトの前に実行されます
- C. UIポリシーのスクリプトは、UIポリシーのアクションの前に実行されます
- D. UIポリシーのアクションとスクリプトが同時に実行されます
正解:B
解説:
Created UI policy on incident form, action set's cmdb_ci field as mandatory and script as not. result, field was not mandatory.
A UI Policy's Actions execute before the UI Policy's Scripts. Actions are predefined operations that can be applied to fields or sections, such as making them mandatory, read-only, visible, or setting a default value. Scripts are custom JavaScript code that can be used to perform more complex logic or validations. Actions are executed first, and then Scripts are executed if the UI Policy conditions are met. Reference: [ServiceNow Docs - UI policy actions], [ServiceNow Docs - UI policy scripts]
質問 # 47
アプリケーション開発者は、レコード プロデューサー Ul を使用して新しいレコードを送信した後にユーザーに表示される ServiceNow ページを指定できます。ページはどのように指定されますか?
- A. URL を保存するアプリケーション プロパティを作成します。
- B. [レコード プロデューサーのスクリプト] フィールドにスクリプトを記述します。生産者.redirect = "<URL>";
- C. レコード プロデューサー Ul を開くモジュール内のページを設定します。
- D. レコード プロデューサーのテーブルのビジネス ルール後のスクリプトを作成します。 window.redirect = "<URL>";
正解:B
解説:
Application developers can specify which ServiceNow page a user sees after submitting a new record using the Record Producer UI by writing a script in the Record Producer's Script field: producer.redirect =
"<URL>";. This script sets the redirect property of the producer object to the URL of the desired page. For example, producer.redirect = "home.do"; will redirect the user to the homepage after submitting the record.
The other options are not valid ways to specify the redirect page for a Record Producer. Reference: Populate record producer data and redirect users
質問 # 48
アプリケーションピッカーの目的は何ですか?
- A. 編集するアプリケーションを選択し、アプリケーション スコープを設定します。
- B. 実行するアプリケーションを選択します
- C. アプリケーションナビゲータでアプリケーションをお気に入りとして選択します。
- D. ダウンロードしてインストールするアプリケーションを選択します
正解:A
解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/concept/c_Applicati
質問 # 49
Guided Application Creator (GAC) でデータ テーブルを指定する方法は何ですか?
3つの答えを選択してください
- A. 既存のスプレッドシートをアップロード
- B. 既存のワープロ ドキュメントをアップロードします。
- C. 既存の PDF をアップロード
- D. プラットフォームに新しいテーブルを作成します
- E. フリーフォーム データベースを使用する
- F. プラットフォーム上の既存のテーブルを使用
正解:A、C、D
質問 # 50
アプリケーション開発者は、レコード プロデューサー Ul を使用して新しいレコードを送信した後にユーザーに表示される ServiceNow ページを指定できます。ページはどのように指定されますか?
- A. URL を保存するアプリケーション プロパティを作成します。
- B. [レコード プロデューサーのスクリプト] フィールドにスクリプトを記述します。生産者.redirect = "<URL>";
- C. レコード プロデューサー Ul を開くモジュール内のページを設定します。
- D. レコード プロデューサーのテーブルのビジネス ルール後のスクリプトを作成します。 window.redirect = "<URL>";
正解:B
解説:
Application developers can specify which ServiceNow page a user sees after submitting a new record using the Record Producer UI by writing a script in the Record Producer's Script field: producer.redirect = "<URL>";. This script sets the redirect property of the producer object to the URL of the desired page. For example, producer.redirect = "home.do"; will redirect the user to the homepage after submitting the record. The other options are not valid ways to specify the redirect page for a Record Producer. Reference: Populate record producer data and redirect users
質問 # 51
......
CAD日本語実際の問題解答PDFには100%カバー率リアル試験問題:https://jp.fast2test.com/CAD-JPN-premium-file.html