
リアルなCAD日本語は100%カバー試験問題をゲット [2023年12月]
問題集まとめ概要はCAD日本語試験問題集はここ
質問 # 53
新しいアプリケーションを作成するときに、タスクテーブルなどの既存のテーブルを拡張する利点は何ですか?
a)ラベルを変更するだけで、既存のフィールドを再利用できます。
b)変更せずに既存のフィールドを使用します。
c)親テーブルの既存のロジックが新しいテーブルに自動的に適用されます。
d)すべての親テーブルレコードが新しいテーブルにコピーされます。
- A. a、b、c、およびd
- B. bおよびc
- C. a、b、c
- D. aとb
正解:C
質問 # 54
公開されたアプリケーションに含まれるスクリプト、レポート、およびその他のアプリケーションアーティファクトを確認するには、次の手順に従います。
- A. 公開するアプリケーションのアプリケーションファイル関連リストを調べます
- B. インスタンスのアップデートセットのリストを開きます
- C. グローバル検索フィールドにアプリケーションの名前を入力します
- D. アーティファクトレコードを個別に開いて、[アプリケーション]フィールドの値を確認します
正解:B
質問 # 55
電子メール通知で構成されているのは次のうちどれですか?
a)誰が通知を受け取るか。
b)通知にはどのような内容が含まれますか。
c)いつ通知を送信するか。
d)通知の送信方法。
- A. a、c、d
- B. a、b、c
- C. b、c、d
- D. a、b、およびd
正解:B
解説:
https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html
質問 # 56
ServiceNow アプリケーションのアプリケーション ファイルとは何ですか?
- A. アプリケーションの更新セットの XML エクスポート
- B. アプリケーションのテーブル レコードの XML エクスポート
- C. アプリケーションを構成する ServiceNow アーティファクト
- D. アプリケーションにインポートされたデータを含む CSV ファイル
正解:C
解説:
Application Files are ServiceNow artifacts comprising an application. An application is a group of files and data that work together to provide a service or functionality. An application file is a specific type of file that belongs to an application, such as a table, a script, a form, a business rule, a UI action, etc. Application files define the structure, logic, and interface of the application. An XML export of an application's table records, XML exports of an application's Update Set, and CSV files containing data imported into an application are not examples of application files, as they are data formats that can be used to transfer or store information related to an application, but not the application itself. Reference: Application Files
質問 # 57
RESTメッセージを構成する場合、エンドポイントは次のとおりです。
- A. 実行を停止するためのRESTスクリプトへのコマンド
- B. 返送するデータがないことを示すプロバイダーからの応答
- C. 返されたデータの形式に関する情報
- D. アクセス、クエリ、または変更されるデータのURI
正解:D
質問 # 58
ServiceNowの委任された開発に関する誤ったステートメントを特定します。
- A. 管理者は、管理者以外のユーザーにグローバルアプリケーションを開発する機能を付与できます。
- B. 管理者は、開発者にスクリプトフィールドへのアクセスを許可できます。
- C. 管理者は、開発者にセキュリティレコードへのアクセスを許可できます。
- D. 管理者は、開発者がアクセスできるアプリケーションファイルの種類を指定できます。
正解:A
解説:
Administrators can grant non-admin users the ability to develop global applications. Delegated Development is for the scoped applications only Reference:
The incorrect statement about Delegated Development in ServiceNow is that administrators can grant non-admin users the ability to develop global applications. Delegated Development allows administrators to grant non-admin users the ability to develop scoped applications, not global applications. Global applications are accessible by all other applications and do not have a namespace prefix. Scoped applications are isolated from other applications and have a unique namespace identifier. Delegated Development provides more granular control over the developer permissions, application resources, and data access. References: [Advantages of Scoped Applications in ServiceNow], [Product Documentation | ServiceNow]
質問 # 59
ビジネスルールで、現在ログインしているユーザーが管理者ロールを持っている場合、次のうちどれがtrueを返しますか?
- A. g_form.hasRoleExactly('admin')
- B. gs.hasRoleExactly('admin')
- C. g_form.hasRole('admin')
- D. gs.hasRole('admin')
正解:C
質問 # 60
次の方法のどれがデフォルトで現在のフォームの上部に青い背景にメッセージを印刷しますか?
- A. g_form.addInfoMessage()
- B. g_form.addInfoMsg()
- C. g_form.showFieldMessage()
- D. g_form.showFieldMsg()
正解:D
質問 # 61
ServiceNow は受信メールを既存のレコードとどのように照合しますか?
- A. 記録リンク
- B. 透かし
- C. 件名
- D. sys_id
正解:B
解説:
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
質問 # 62
次の方法のうち、アクセス制御スクリプトで役立つものはどれですか?
- A. gs.hasRole() および current.isNewRecord()
- B. gs.hasRole() および current.isNew()
- C. g_user.hasRole() および current.isNewRecord()
- D. g_user.hasRole() および current.isNew()
正解:A
質問 # 63
アクセス制御の各要素がアクセスを許可されたか拒否されたかを示す、アクセス制御デバッグ情報の識別。アクセス制御の要素は評価されましたか?
- A. 条件、ロール、スクリプト
- B. ロール、条件、スクリプト
- C. 条件、スクリプト、ロール
- D. スクリプト、条件、役割
正解:A
解説:
The elements of an Access Control are evaluated in the following order: Conditions, Roles, Script. The Conditions are a set of criteria that must be met for the Access Control to apply. The Roles are a list of user roles that are required to access the object. The Script is an optional script that can further restrict or allow access based on custom logic. If any of these elements return false, the Access Control denies access and stops evaluating the remaining elements. Reference: Access control rules
質問 # 64
テーブルのリストの列ヘッダーを右クリックして作成できるレポートタイプはどれですか。
- A. 棒グラフ
- B. 棒グラフ、円グラフ、およびヒストグラム
- C. 棒グラフ、円グラフ、ヒストグラム、および線
- D. 棒グラフと円グラフ
正解:D
解説:
The Bar Chart and Pie Chart report types can be created by right-clicking on a column header in a table's list. These report types show how individual pieces of data relate to the whole using proportional bars or slices. You can also choose different aggregation methods such as count, sum, average, min, max, or percent. Reference: [Create reports from lists]
質問 # 65
アプリケーション、アプリケーション リソース、またはイベントへのアクセスを要求するクロススコープ アプリケーションまたはスクリプトを追跡するために使用されるレコードは何ですか?
- A. 制限された発信者アクセス レコード
- B. クロススコープアクセス記録
- C. 発信者追跡記録
- D. アクセス制御レベル レコード
正解:A
解説:
"Restricted caller access [sys_restricted_caller_access] records track cross-scope applications or scripts that request access to an application, application resource, or event in the Now Platform." <<== this is the third sentence down in the following link: https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/concept/restricted-caller-access-privilege.html
質問 # 66
ServiceNowのレポートに当てはまるのは次のうちどれですか? (3つ選択してください。)
- A. データをグラフィカルに表現できます。
- B. 許可されたユーザーがオンデマンドで実行できます。
- C. すべてのユーザーが共有されているレポートを表示できます。
- D. 電子メールで実行および配布するようにスケジュールできます。
- E. すべてのユーザーが任意のテーブルでレポートを生成できます。
正解:A、B、D
解説:
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
質問 # 67
電子メール通知で、重みフィールドに当てはまらないものは次のうちどれですか?
- A. 重み値がゼロの場合、通知の送信時期の基準が満たされたときに通知が常に送信されることを意味します
- B. 重み値がゼロの場合、メールを送信しないことを意味します
- C. 同じレコードと受信者の重みが最も高い通知のみが送信されます
- D. ウェイト値のデフォルトはゼロです
正解:B
解説:
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
質問 # 68
アプリケーションスコープに関して正しいのは次のうちどれですか?
- A. すべての開発者が任意のアプリケーションを編集できます
- B. 開発者はスコープの名前空間のプレフィックスを選択できます
- C. サードパーティのServiceNowアプリケーション開発者からダウンロードしたアプリケーションで名前の競合を起こすことはできません
- D. すべてのアプリケーションは自動的にグローバルスコープの一部になります
正解:C
解説:
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_ApplicationScope.html
質問 # 69
次のうち、クライアント側スクリプトのデバッグ戦略ではないものはどれですか?
- A. gs.log()
- B. g_form.addInfoMessage()
- C. Field Watcher
- D. jslog()
正解:A
質問 # 70
次のうち、フォーム デザイナーの一部ではないものはどれですか?
- A. フォームのレイアウト
- B. ページ ヘッダー
- C. スキーマ マップ
- D. フィールドナビゲーター
正解:C
解説:
https://developer.servicenow.com/dev.do#!/learn/courses/sandiego/app_store_learnv2_learnmore_sandiego_learn_more/app_store_learnv2_learnmore_sandiego_form_and_list_layouts/app_store_learnv2_learnmore_sandiego_what_is_form_designer
質問 # 71
次の方法のうち、アクセス制御スクリプトで役立つのはどれですか?
- A. g_user.hasRole()およびcurrent.isNewRecord()
- B. g_user.hasRole()およびcurrent.isNew()
- C. gs.hasRole()およびcurrent.isNew()
- D. gs.hasRole()およびcurrent.isNewRecord()
正解:D
質問 # 72
後のアプリケーションのためにインスタンスにローカルの変更を保存するために使用されるソース管理操作は、a(n)と呼ばれます。
<空白>。
- A. ブランチ
- B. スタッシュ
- C. アップデートセット
- D. タグ
正解:B
解説:
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]
質問 # 73
......
認定トレーニングはCAD日本語試験問題集テストエンジン:https://www.passtest.jp/ServiceNow/CAD-JPN-shiken.html