
検証済みCAD日本語問題集PDF資料 [2025]
最新のCAD日本語実際の無料試験問題更新された201問あります
質問 # 12
フォームを設計および作成するとき、フォームのフィールドを整理するために何を作成しますか?
- A. セクション
- B. 関連リスト
- C. ボタン
- D. タブ
正解:A
解説:
When designing and creating a form, you can create sections to organize fields on a form. Sections are containers that group related fields together and provide a label and a description for the group. You can use sections to improve the readability and usability of the form. You can also collapse or expand sections to show or hide the fields within them.
The other options are not valid ways to organize fields on a form. Related lists are not fields, but lists of records that are related to the current record on the form. Tabs are not part of the form, but part of the application menu that allows you to navigate between different modules. Buttons are not fields, but elements that perform actions on the form, such as saving, updating, or deleting the record.
Reference:
[Form sections]
[Related lists]
[Application menus and modules]
[Form buttons]
質問 # 13
アプリケーション メニューとモジュールへのアクセスはどのように制御されますか?
- A. アクセス制御
- B. アプリケーション ルール
- C. 役割
- D. クライアント スクリプト
正解:C
解説:
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.
References = Enable or disable an application menu or module, Grant a role access to applications and modules, Controlling access to applications and modules.
質問 # 14
次のうち、アプリケーションスコープの目的ではないものはどれですか?
- A. アプリケーションを開発したユーザーを追跡する方法を提供します
- B. アプリケーション名間の衝突を防ぐために名前空間(プレフィックスとスコープ名)を提供します
- C. アプリケーションアーティファクト間の関係を提供します
- D. 別のスコープのスクリプトがスコープアプリケーションのテーブルを変更する方法を制御します
正解:A
質問 # 15
クライアント側スコープ API の一部ではないクラスはどれですか?
- A. ガイドレコード
- B. GuideAjex
- C. GuideDialogWindow
- D. ガイドフォーム
正解:A
解説:
This class allows you to create and manipulate dialog windows on the user interface. You can use this class to display messages, forms, or custom HTML content in a modal window.
GuideAjex: This class allows you to make asynchronous calls to the server and process the response. You can use this class to retrieve data, execute scripts, or perform actions on the server without reloading the page.
GuideForm: This class allows you to access and manipulate the fields and values on a form. You can use this class to get or set field values, show or hide fields, add or remove options, or validate field inputs.
The class GuideRecord is not part of the Client side scoped APIs. GuideRecord is part of the Server side scoped APIs, which are a set of classes and methods that allow you to interact with the database and perform server-side logic on the ServiceNow platform. GuideRecord is a class that represents a record in a table and allows you to query, insert, update, or delete records on the server.
Reference:
[Client side scoped APIs]
[Server side scoped APIs]
質問 # 16
電子メール通知で構成されているのは次のうちどれですか?
a)誰が通知を受け取るか。
b)通知にはどのような内容が含まれますか。
c)いつ通知を送信するか。
d)通知の送信方法。
- A. a、b、c
- B. a、c、d
- C. a、b、およびd
- D. b、c、d
正解:A
解説:
https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html
質問 # 17
テーブル間の関係のグラフィカル ビューは <空白> です。
- A. グラフィカル ユーザー インターフェイス
- B. マップ ソース レポート
- C. スキーマ マップ
- D. 依存ビュー
正解:C
解説:
"Schema map: Provides a graphical representation of the relationships between tables."
https://docs.servicenow.com/bundle/tokyo-platform-administration/page/administer/table-administration/concept
質問 # 18
ServiceNow アプリ リポジトリとは何ですか?
- A. ServiceNow アプリを含むデータベース
- B. Git データベース内のファイルのコレクション
- C. 更新セットの別名
- D. リクエストテーブル
正解:A
解説:
The ServiceNow App Repository is a central repository for all scoped applications that are published by all ServiceNow customers. It enables ServiceNow customers to uploadand distribute applications between their instances. It also provides entitlements and version control for the applications.
References:
* ServiceNow application repository
* Application Development Platform - ServiceNow
* App Repo - ServiceNow Developer Blog
質問 # 19
特定の分野を対象としたフィードバックを提供するためにクライアント スクリプトを作成する場合、どの方法を使用する必要がありますか?
- 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
質問 # 20
RESTメッセージを構成する場合、エンドポイントは次のとおりです。
- A. 返送するデータがないことを示すプロバイダーからの応答
- B. アクセス、クエリ、または変更されるデータのURI
- C. 返されたデータの形式に関する情報
- D. 実行を停止するためのRESTスクリプトへのコマンド
正解: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
質問 # 21
ナレッジ ベース内でナレッジを投稿したり読んだりできるユーザーを制限できる機能は何ですか?
- A. グループ
- B. カテゴリ
- C. ユーザー基準
- D. 役割
正解:C
質問 # 22
テーブルのリストの列ヘッダーを右クリックして作成できるレポートタイプはどれですか。
- A. 棒グラフ、円グラフ、ヒストグラム、および線
- B. 棒グラフと円グラフ
- C. 棒グラフ、円グラフ、およびヒストグラム
- D. 棒グラフ
正解:D
質問 # 23
Flow Designerのトリガータイプではないものは次のうちどれですか?
- A. スケジュール
- B. 送信メール
- C. 記録
- D. アプリケーション
正解:B
解説:
See list of triggers on right hand side of this webpage: https://docs.servicenow.com/en-US/bundle/tokyo-application-development/page/administer/flow-designer/reference/flow-triggers.html The trigger types in Flow Designer are Application, Record, Schedule, and Topic. Outbound Email is not a trigger type, but an action type that can be used in a flow to send an email message1. References: Flow Designer Trigger Types
質問 # 24
アプリケーションのスコープを変更することはできますか?
- A. はい、可能です。
- B. いいえ、それは不可能です。
- C. はい、ただしグローバル スコープからプライベート スコープへのみ
- D. はい。ただし、プライベート スコープからグローバル スコープへのみ
正解:A
解説:
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.
Reference:
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
質問 # 25
どのビジネス要件とプロセスをアプリケーション開発計画の一部として文書化する必要がありますか?
4 つの答えを選択してください
- A. ユーザー/関係者
- B. 利用可能なライセンス
- C. データ入出力
- D. プロセスのステップ
- E. データベース容量
- F. プロジェクトのスケジュール
- G. ビジネス上の問題
正解:A、C、D、G
解説:
The application development plan is a document that outlines the scope, objectives, deliverables, and timeline of a software project1. It should include the following business requirements and processes:
Data input/output: This describes what data is needed for the application to function, how the data is collected, stored, processed, and displayed, and what outputs are generated by the application2.
Business problem: This defines the problem or opportunity that the application aims to address, the current situation, the desired outcome, and the benefits of the solution3.
Process steps: This details the steps involved in the application development lifecycle, such as planning, designing, testing, deploying, and maintaining the application4.
Users/stakeholders: This identifies the people who will use, benefit from, or influence the application, their roles, responsibilities, and expectations, and how they will be involved in the project5.
Reference = 1: Application Development Lifecycle: Phases, Steps and Process3 2: Tips for Writing Business Requirements Documents2 3: Business Requirements Document Template: 7 Components1 4: Requirements Development Steps4 5: What is Business Process Documentation?: 10 Easy Steps to5
質問 # 26
管理者として、高セキュリティ設定の機能にアクセスするには何をする必要がありますか?
- A. システム管理 > 役割の昇格モジュールを使用する
- B. セキュリティ管理者を偽装する
- C. 役割の昇格を選択
- D. ユーザーアカウントにsecurity_adminロールを追加します
正解:C
質問 # 27
Guided Application Creator を使用してアプリケーションを作成する場合、テーブルを作成するためのオプションではないものは次のうちどれですか?
- A. テンプレートからテーブルを作成
- B. テーブルを拡張する
- C. テーブルを最初から作成する
- D. スプレッドシートをアップロード
正解:A
解説:
Create table from template is not an option for creating a table through the Guided Application Creator. The other options are available for creating a table in the app. Upload spreadsheet allows you to import data from an Excel file and create a table based on the spreadsheet columns and rows. Extend a table allows you to create a child table that inherits fields and behaviors from a parent table. Create table fromscratch allows you to define your own fields and data types for a new table. Reference: Create tables
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/guided-app-creator/concept/gac-t
質問 # 28
フォームに表示されるフィールドのデータ型を選択するとき、次のステートメントのうち正しくないものはどれですか?
- A. データ型を使用して日付と時刻を入力します。
- B. 自由形式のテキスト フィールドに文字列データ型を使用します。
- C. 電話番号データ型を使用して、電話番号データの検証を自動化します。
- D. Choice データ型を使用して、フィールドのオプションを制限します
正解:C
解説:
The data type of a field determines the format, validation, and display of the field value on a form. When selecting a data type for a field, you should consider the purpose and function of the field. The statements A, C, and D are correct for selecting a data type for a field. For example:
Use the Choice data type to limit options in a field: The Choice data type allows you to create a field that has a predefined set of options for the user to select from. The options can be displayed as a drop-down list, radio buttons, or checkboxes. For example, you can use the Choice data type for a field that indicates the priority of a task.
Use the Phone Number data type to automate phone number data validation: The Phone Number data type allows you to create a field that accepts and validates phone numbers. The field will automatically format the phone number according to the user's locale and country code. For example, you can use the Phone Number data type for a field that stores the contact number of a user.
Use the string data type for a free-form text field: The string data type allows you to create a field that accepts any text input from the user. The field can have a maximum length of 255 characters. For example, you can use the string data type for a field that captures the short description of an incident.
The statement B is not correct for selecting a data type for a field. There is no Data data type in ServiceNow. To enter the date and time of day, you should use the Date/Time data type. The Date/Time data type allows you to create a field that accepts and displays a date and time value. The field will use a calendar widget and a time picker to help the user enter the value. For example, you can use the Date/Time data type for a field that records the due date of a task.
Reference:
[Field types]
[Date/Time field type]
質問 # 29
Guided Application Creator について正しい説明は次のうちどれですか?
- A. 新しいアプリケーションが作成されるたびにウェルカム画面が表示されます
- B. スコープ アプリケーション ユーザー ロールが自動的に作成されます。
- C. デフォルトのアクセス制御が自動的に作成されます
- D. グローバル スコープ オプションはデフォルトでオンになっています
正解:A
解説:
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
質問 # 30
ServiceNowの委任された開発に関する誤ったステートメントを特定します。
- A. 管理者は、開発者にスクリプトフィールドへのアクセスを許可できます。
- B. 管理者は、開発者がアクセスできるアプリケーションファイルの種類を指定できます。
- C. 管理者は、開発者にセキュリティレコードへのアクセスを許可できます。
- D. 管理者は、管理者以外のユーザーにグローバルアプリケーションを開発する機能を付与できます。
正解:D
解説:
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. Reference: [Advantages of Scoped Applications in ServiceNow], [Product Documentation | ServiceNow]
質問 # 31
ソース管理からアプリケーションをインポートしたり、アプリケーションをソース管理にリンクしたりするなど、ソース管理リポジトリ操作へのアクセスを許可する役割はどれですか? (2つ選択してください。)
- A. admin
- B. source_control_admin
- C. source_control
- D. git_admin
正解:A、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
質問 # 32
......
CAD日本語認定概要最新のCAD日本語PDF問題集はこちら:https://www.passtest.jp/ServiceNow/CAD-JPN-shiken.html