[Q96-Q119] 合格させちゃうCertified Application Developer CAD日本語試験簡単かつ正確なPDF問題 [2024年12月09日]

Share

合格させちゃうCertified Application Developer CAD日本語試験簡単かつ正確なPDF問題 [2024年12月09日]

CAD日本語認証試験問題集解答を提供しています

質問 # 96
次のうち、フィールドウォッチャーを使用してデバッグできないものはどれですか?

  • A. ビジネスルール
  • B. クライアントスクリプト
  • C. スクリプトに含まれるもの
  • D. アクセス制御

正解:D

解説:
The Field Watcher is a debugging tool that allows you to monitor the values of fields on a form as they change due to scripts or other actions. It can be used to debug Business Rules, Client Scripts, and Access Controls, but not Script Includes. Script Includes are server-side scripts that define reusable functions and classes. They are not associated with any specific field or form, and therefore cannot be watched by the Field Watcher.
References:
* Field Watcher
* Script Includes


質問 # 97
次のデータベース操作のうち、Application Access で制御できないものはどれですか?

  • A. アップデート
  • B. 削除
  • C. クエリ
  • D. 作成

正解:C

解説:
Application Access is a feature that allows you to control the access level of other application scopes to your application's data tables. You can use Application Access to control the following database operations:
Create: This operation allows the user to create new records on the table. You can enable or disable this operation by selecting or clearing the Can create option.
Delete: This operation allows the user to delete existing records on the table. You can enable or disable this operation by selecting or clearing the Can delete option.
Read: This operation allows the user to view the records on the table. You can enable or disable this operation by selecting or clearing the Can read option.
Write: This operation allows the user to modify the records on the table. You can enable or disable this operation by selecting or clearing the Can write option.
The one database operation that cannot be controlled with Application Access is Query. Query is not an operation, but a method of the GlideRecord class that is used to retrieve records from the database on the server-side. Query is not part of the Application Access rules, but it is affected by the Access Controls and the user's roles.
References:
Application Access
[GlideRecord methods]


質問 # 98
フォームを設計および作成するとき、フォームのフィールドを整理するために何を作成しますか?

  • A. ボタン
  • B. タブ
  • C. セクション
  • D. 関連リスト

正解:C


質問 # 99
テーブル 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


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

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

正解:A

解説:
From:https://docs.servicenow.com/bundle/paris-application-development/page/script/general-scripting/reference 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 The method that prints a message on a blue background to the top of the current form by default is g_form.addInfoMessage(). The g_form object is a global object that provides access to form fields and UI elements on a form. The addInfoMessage() method is a method of the g_form object that displays an informational message next to the form header. The message has a blue background color by default, unless it is overridden by a CSS style. The addInfoMessage() method takes one argument, which is the message text to display. References: [ServiceNow Docs - GlideForm (g_form) API], [ServiceNow Docs - g_form.addInfoMessage()]


質問 # 101
ServiceNow インスタンスでデフォルトで使用できるテーブルはどれですか?
3つの回答を選択してください

  • A. プロジェクト
  • B. 事件
  • C. アイテム
  • D. タスク
  • E. 問題
  • F. ユーザー

正解:B、D、F


質問 # 102
アプリケーションのプロパティ ページにアクセスするために使用されるモジュール リンクのタイプは何ですか?

  • A. URL (引数から)
  • B. 単一レコード
  • C. スクリプト (引数から)
  • D. HTML (引数から)

正解:A

解説:
A Module Link type defines how the module opens in the content pane when the user clicks on it in the navigation pane1. The URL (from Arguments) link type allows you to specify a URL that opens the Application Properties page for the selected application2. The URL can include arguments that are evaluated at runtime, such as the application name or scope3.
Reference = 1: Module link types - ServiceNow Docs 2: Application properties - ServiceNow Docs 3: URL (from Arguments) - ServiceNow Docs


質問 # 103
アプリケーションスコープに関して正しいのは次のうちどれですか?

  • A. すべてのアプリケーションは自動的にグローバルスコープの一部になります
  • B. サードパーティのServiceNowアプリケーション開発者からダウンロードしたアプリケーションで名前の競合を起こすことはできません
  • C. 開発者はスコープの名前空間のプレフィックスを選択できます
  • D. すべての開発者が任意のアプリケーションを編集できます

正解:B

解説:
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_ApplicationScope.html The correct statement regarding Application Scope is that applications downloaded from 3rd party ServiceNow application developers cannot have naming conflicts. Application Scope is a feature that identifies and isolates applications and their related artifacts from other applications. Each scoped application has a unique namespace identifier that consists of a prefix and a scope name. This prevents cross-application name collisions and ensures that only authorized scripts can access or modify data in a scoped application. Reference: [Product Documentation | ServiceNow], [How To Create a Scoped App in ServiceNow - YouTube]


質問 # 104
ServiceNow アプリケーションをテストするために使用されるテスト フレームワークはどれですか?

  • A. ジュニット
  • B. セレン
  • C. 自動テスト フレームワーク (ATF)
  • D. テスト駆動フレームワーク (TDF)

正解:C


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

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

正解:C

解説:
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.
Reference:
The following platform feature can be used to determine the relationships between fields in an Import Set table to fields in an existing ServiceNow table:
Transform Map. This is a feature that defines the mapping between the fields of an Import Set table and the fields of a target table, such as incident, problem, or user. A transform map also specifies the logic and rules for transforming the imported data, such as coalescing, scripting, or applying data policies.
The following platform features are not used to determine the relationships between fields in an Import Set table to fields in an existing ServiceNow table:
Business Service Management Map. This is a feature that provides a graphical representation of the configuration items (CIs) and their relationships in the Configuration Management Database (CMDB). A Business Service Management Map can be used to visualize the impact of incidents, changes, or problems on the CIs and the services they support.
Data Sources. This is a feature that defines the connection and authentication information for an external data source, such as a file, a JDBC database, or a web service. A data source is used to import data from the external source into an Import Set table.
CI Relationship Builder. This is a feature that creates relationships between CIs in the CMDB based on predefined or custom rules. A CI Relationship Builder can be used to populate the CMDB with the dependencies and connections between the CIs. References: Transform Maps, Business Service Management Map, Data Sources, CI Relationship Builder


質問 # 106
アプリケーション アクセスには、[Web サービス経由でこのテーブルへのアクセスを許可する] という構成オプションがあります。このオプションが選択されている場合、次のステートメントのうち正しいのはどれですか?

  • A. このオプションはアクセスを SOAP Web サービスのみに制限しますが、REST には適用されません。
  • B. Web サービス経由でクエリを実行するユーザーは、テーブルのレコードにアクセスするための適切な権限を持っている必要があります。
  • C. このオプションは、Web サービス経由でレコードを削除する機能を制限しますが、レコードはいつでも読み取ることができます。
  • D. 選択されていない場合でも、適切な権限を持つユーザーは Web サービスを使用してテーブルのレコードにアクセスできます。

正解:B

解説:
Application Access is a feature that allows you to control the access level of other application scopes to your application's data tables. By selecting the Allow access to this table via web services option, you can enable other application scopes to access your data tables using web services, such as SOAP or REST. However, the user performing the query via web services must have the correct permissions to access the table's records.
The user must have the appropriate roles and access controls to perform the operations on the table, such as create, read, write, or delete.
The other statements are not true when this option is selected. This option does not restrict the ability to delete records via web services, nor does it allow records to be always read. The access to the records depends on the user's permissions and the web service method. This option also does not restrict access only to SOAP web services, but applies to both SOAP and REST web services. Finally, this option is not the only way to enable web service access to the table's records. Even when this option is not selected, users with the correct permissions can use web services to access the table's records, as long as they specify the application scope in the web service request.
References:
* Application Access
* Web service access to scoped applications


質問 # 107
次のうち、フォーム デザイナーの一部ではないものはどれですか?

  • A. フォームのレイアウト
  • B. スキーマ マップ
  • C. ページ ヘッダー
  • D. フィールドナビゲーター

正解:B

解説:
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 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]


質問 # 108
IT 従業員として、トラブルシューティング スクリプトや FAQ などの社内 IT ドキュメントを参照する場合、どのインターフェイスを使用しますか?

  • A. ServiceNow ウィキ
  • B. スタックオーバーフロー
  • C. シェアポム
  • D. 知識
  • E. ナレッジ・ナウ

正解:D


質問 # 109
[構成を許可する]アプリケーションアクセスオプションが選択されているテーブルに当てはまるのは、次のうちどれですか。

  • A. スコープ外のアプリケーションはテーブルのビジネスルールを作成できます
  • B. アプリケーションのユーザーロールを持つすべてのユーザーがアプリケーションのスクリプトを変更できます
  • C. スコープ内のアプリケーションのスクリプトのみがテーブルのビジネスルールを作成できます
  • D. スコープ外のアプリケーションはスコープ付きアプリケーションに新しいテーブルを追加できます

正解:A

解説:
The Allow configuration Application Access option determines whether users can configure the application tables, such as adding or modifying fields, views, or indexes. The following is true for a table with the Allow configuration option selected:
Out of scope applications can create Business Rules for the table. This is true because the Allow configuration option grants access to the table configuration to any user who has the admin or personalize_dictionary role, regardless of the application scope. This means that users can create Business Rules, which are server-side scripts that run when a record is displayed, inserted, updated, or deleted, for the table from any application.
The following are not true for a table with the Allow configuration option selected:
Only the in scope application's scripts can create Business Rules for the table. This is false because the Allow configuration option does not restrict the creation of Business Rules to the in scope application, as explained above.
Any user with the application's user role can modify the application's scripts. This is false because the Allow configuration option does not grant access to the application scripts, such as client scripts or script includes, to any user who has the application's user role. To modify the application scripts, users need to have the admin role or the application's admin role.
Out of scope applications can add new tables to the scoped application. This is false because the Allow configuration option does not allow out of scope applications to add new tables to the scoped application. To add new tables to a scoped application, users need to have the admin role or the application's admin role and be in the application scope. References: Application Access, Business Rules


質問 # 110
ServiceNow REST API の一部ではないメソッドは次のうちどれですか?

  • A. 取得
  • B. ポスト
  • C. コピー
  • D. 削除

正解:C

解説:
The ServiceNow REST API is a web service that allows you to interact with the ServiceNow platform using HTTP requests and responses. The ServiceNow REST API supports the following methods:
* POST: This method allows you to create a new record or execute an action on the ServiceNow platform.
For example, you can use the POST method to create an incident or run a script.
* GET: This method allows you to retrieve information from the ServiceNow platform. For example, you can use the GET method to get the details of a user or a table.
* DELETE: This method allows you to delete a record or a resource from the ServiceNow platform. For example, you can use the DELETE method to delete an attachment or a workflow context.
* PUT: This method allows you to update a record or a resource on the ServiceNow platform. For example, you can use the PUT method to update the state of a task or the value of a system property.
* PATCH: This method allows you to update a record or a resource on the ServiceNow platform by sending only the changes. For example, you can use the PATCH method to update the short description of an incident or the order of a module.
The method COPY is not part of the ServiceNow REST API. There is no COPY method in the HTTP protocol. To copy a record or a resource on the ServiceNow platform, you need to use the POST method with the clone action.
References:
* ServiceNow REST API overview
* ServiceNow REST API methods
* [ServiceNow REST API actions]


質問 # 111
開発するアプリケーションごとにアプリケーション プロパティ ページを作成する利点は次のうちどれですか?

  • A. アプリケーション ユーザーは、アプリケーションの外観を変更するには、[アプリケーション プロパティ] ページに移動する必要があることを知っています。
  • B. アプリケーション プロパティを使用すると、開発者は ServiceNow から継承されたアプリケーション プロパティをオーバーライドできます。
  • C. アプリケーションのプロパティ ページは、アプリケーションの適切なランディング ページです。
  • D. アプリケーション プロパティを使用すると、開発者または管理者はアプリケーション アーティファクトを変更せずにアプリケーションの動作を変更できます。

正解:D

解説:
A benefit of creating an Application Properties page for each application you develop is that Application Properties allow a developer or admin to make changes to an application's behavior without modifying application artifacts. Application Properties are system properties that store configuration information for a specific application. They can be used to control various aspects of the application, such as feature flags, default values, thresholds, or URLs. By creating an Application Properties page, you can group and display all the properties related to your application in one place and make them easy to access and update. This way, you can avoid hard-coding static data in your application code and make your application more flexible and maintainable. Reference: Working with System Properties, Organizing your ServiceNow System Properties


質問 # 112
Guided Application Creator について正しい説明は次のうちどれですか?

  • A. 新しいアプリケーションが作成されるたびにウェルカム画面が表示されます
  • B. スコープ アプリケーション ユーザー ロールが自動的に作成されます。
  • C. デフォルトのアクセス制御が自動的に作成されます
  • D. グローバル スコープ オプションはデフォルトでオンになっています

正解:A


質問 # 113
Guided Application Creator を有効にするプラグインは何ですか?

  • A. com.glide.snc.apps_creator
  • B. com.glide.sn-guided-app-creator
  • C. com.snc.apps_creator_template
  • D. com.glide.service_creator

正解:B

解説:
"Guided Application Creator is enabled via the Guided Application Creator (com.glide.sn-guided-app-creator) plugin, which is active by default in the Now Platform." Located under "Activation Information" section at this URL:
https://docs.servicenow.com/en-US/bundle/tokyo-application-development/page/build/guided-app-creator/concept/guided-app-creator.html


質問 # 114
table というテーブルが存在し、3 つのフィールド (field1、field2、field3) が含まれているとします。table のアクセス制御リストを調べます。
itil ロールを持つユーザーはどのフィールドを読み取ることができますか?

  • A. フィールド3のみ
  • B. フィールド3を除くすべてのフィールド
  • C. すべてのフィールド
  • D. フィールド1とフィールド3

正解:B

解説:
https://docs.servicenow.com/bundle/tokyo-platform-security/page/administer/contextual-security/concept/access-control-rules.html


質問 # 115
次の機能のうち、グローバルアプリケーションで使用できるものはどれですか? (2つ選択してください。)

  • A. 自動テストフレームワーク
  • B. ソース管理
  • C. 委任された開発
  • D. フローデザイナー

正解:A、D

解説:
Global applications can use Automated Test Framework and Flow Designer features, but not Source Control and Delegated Development features. Source Control and Delegated Development features are only available to scoped applications . Reference: [Global vs Scoped Applications], [Delegated Development]


質問 # 116
次のうち、発信者アクセス フィールドのオプションでないものはどれですか?

  • A. 発信者制限
  • B. 発信者追跡
  • C. なし
  • D. 発信者権限

正解:D

解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/task/set-RCA-level.html


質問 # 117
Guided Application Creator について正しいのは次のどれですか?

  • A. デフォルトのアクセス制御が自動的に作成されます
  • B. 新しいアプリケーションが作成されるたびに、ようこそ画面が表示されます
  • C. スコープ アプリケーション ユーザー ロールが自動的に作成されます
  • D. グローバル スコープ オプションはデフォルトでオンになっています

正解:B

解説:
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


質問 # 118
アクセス制御の各要素がアクセスを許可されたか拒否されたかを示す、アクセス制御デバッグ情報の識別。アクセス制御の要素は評価されましたか?

  • A. スクリプト、条件、役割
  • B. ロール、条件、スクリプト
  • C. 条件、ロール、スクリプト
  • D. 条件、スクリプト、ロール

正解:C


質問 # 119
......

更新されたCAD日本語試験練習テスト問題:https://jp.fast2test.com/CAD-JPN-premium-file.html


弊社を連絡する

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

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어