2026年最新の実際に出ると確認された 無料ServiceNow CAD試験問題 [Q112-Q135]

Share

2026年最新の実際に出ると確認された 無料ServiceNow CAD試験問題

CADリアル試験問題解答は無料


CAD試験はオンラインで実施され、90分以内に回答する必要がある60の複数選択質問で構成されています。試験料は150ドルで、候補者は試験に合格するために最低70%を獲得する必要があります。失敗の場合、候補者は30日間の待機期間後に試験を再試行できます。


CAD認定プログラムは、ServiceNowでの作業経験があるITプロフェッショナルを対象に、スキルを次のレベルに引き上げることを目的としています。プログラムはオンライントレーニングと実践経験の組み合わせで提供され、アプリケーションの設計、開発、テスト、展開などのトピックをカバーしています。


ServiceNow CAD試験は、エンドユーザーの要件を満たすアプリケーションを設計および開発する開発者の能力を評価するパフォーマンスベースのテストです。この試験では、最新のServiceNowリリースをカバーし、スクリプティング、統合、UIのカスタマイズなど、ServiceNowプラットフォームに関する開発者の知識をテストします。認定は2年間有効であり、試験の最新バージョンに合格することで更新できます。

 

質問 # 112
An administrator creates "customer_table_adminH and "customer_table_user" roles for the newly created
"Customer Table". Which ACL rule would grant access to all rows and all fields to both the customer_table_admin and customer_table_user roles?

  • A. customer.*
  • B. customer.none
  • C. customer all
  • D. customer.field

正解:A


質問 # 113
What section on the Notes tab, shows the history of the work documented on the record?

  • A. Activity Stream
  • B. Audit Log
  • C. Journal
  • D. Timeline
  • E. Diary

正解:A


質問 # 114
Once an application is ready to share, which of the following methods of publishing are supported by ServiceNow? (Choose 3 answers)

  • A. Publish to a local USB device
  • B. Publish to an application repository
  • C. Publish to a local drive
  • D. Publish to the ServiceNow Store
  • E. Publish to an update set
  • F. Publish to a spreadsheet

正解:B、D、E

解説:
ServiceNow provides several methods for developers to publish and share applications once they are ready for distribution. The supported methods include:
* Publish to an application repository: This method allows developers to publish their applications to a centralized repository, enabling easy distribution and installation across multiple ServiceNow instances.
The application repository serves as a hub where applications can be stored and accessed by other instances.
snowunderground.com
* Publish to the ServiceNow Store: Developers can submit their applications to the ServiceNow Store, a marketplace where applications are reviewed, certified, and made available to all ServiceNow customers. Publishing to the Store involves a certification process to ensure the application meets ServiceNow's standards.
support.servicenow.com
* Publish to an update set: An update set is a container for capturing configuration changes in ServiceNow. Developers can publish applications to an update set, which can then be moved between instances, allowing for the transfer of application configurations and customizations.
servicenow.com
Options A (Publish to a spreadsheet), D (Publish to a local USB device), and F (Publish to a local drive) are not supported methods for publishing applications in ServiceNow. These options do not align with the platform's mechanisms for application distribution and deployment.


質問 # 115
When writing a Client Script to provide feedback targeted at a specific field, which method should be used?

  • A. g_form.showFieldMsg()
  • B. g_form.showInfoMessage()
  • C. g_form.addFieldMsg()
  • D. g_form.addInfoMessage()

正解:A

解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/useful-scripts/reference
/r_DisplayFieldMessages.html


質問 # 116
How does ServiceNow match inbound email to existing records?

  • A. Record link
  • B. Watermark
  • C. sys_id
  • D. Subject line

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


質問 # 117
Which one of the following is NOT true for Modules?

  • A. Every Module must be part of an Application Menu
  • B. Every Module must be associated with a table
  • C. Access to Modules is controlled with roles
  • D. Modules open content pages

正解:A

解説:
A Module in ServiceNow is a navigational element within an Application Menu that directs users to specific records, lists, forms, or reports.
* Option A (Correct): Modules always belong to an Application Menu, providing structured navigation.
* Option B (Incorrect): Modules can link to pages, reports, and URLs, not just tables.
* Option C (Incorrect): Modules can open forms, lists, dashboards, and external URLs.
* Option D (Incorrect): Modules can be restricted by roles, limiting visibility and access.
Reference: ServiceNow Navigation and Modules


質問 # 118
What function do you use to add buttons, links, and context menu items on forms and lists?

  • A. Ul Policies
  • B. Ul Config
  • C. UI Actions
  • D. Ul Settings

正解:C


質問 # 119
Which of the following methods prints a message on a blue background to the top of the current form by default?

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

正解:B

解説:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/script/useful-scripts/ reference/r_DisplayFieldMessages.html


質問 # 120
Which database operations can be controlled with Access Control?
Choose 2 answers

  • A. Update
  • B. Execute
  • C. Create
  • D. Query

正解:A、C

解説:
In ServiceNow, Access Controls (ACLs) are used to manage permissions for various database operations on tables and their records. The primary operations that can be controlled include:
* Create:
* Description: Permission to insert new records into a table.
* Control: ACLs can be defined to allow or deny users the ability to create records based on roles, conditions, or scripts.
* Update:
* Description: Permission to modify existing records in a table.
* Control: ACLs can restrict who can update records, ensuring that only authorized users can make changes.
Other Operations:
* Read: Controls the ability to view records in a table.
* Delete: Manages the permission to remove records from a table.
Incorrect Options:
* Execute: Not a standard database operation controlled by ACLs in ServiceNow.
* Query: While querying is part of the read operation, ACLs specifically control the read access rather than the query process itself.
Reference: For more detailed information, please refer to the official ServiceNow documentation on Access Control Rules.


質問 # 121
Which options are strategies for debugging client-side scripts?
Choose 2 answers

  • A. g_form.addInfoMessage()
  • B. gs.addErrorMessage()
  • C. gs.log()
  • D. jslog()

正解:A、D

解説:
Debugging client-side scripts in ServiceNow involves using methods that provide feedback during script execution. The following methods are commonly used:
* g_form.addInfoMessage():
* Description: Displays informational messages to the user within the form interface.
* Usage: g_form.addInfoMessage('Your message here');
* Purpose: Useful for providing real-time feedback or debugging information directly on the form during script execution.
* jslog():
* Description: Logs messages to the browser's console.
* Usage: jslog('Your debug message here');
* Purpose: Helps developers output debugging information to the browser console, which can be inspected during development.
Incorrect Options:
* gs.addErrorMessage(): This is a server-side method used to display error messages to the user and is not applicable for client-side debugging.
* gs.log(): Another server-side method used to log messages to system logs, not suitable for client-side script debugging.


質問 # 122
Which of the following methods prints a message on a blue background to the top of the current form by default?

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

正解:A

解説:
From: https://docs.servicenow.com/bundle/paris-application-development/page/script/general-scripting/reference/r_ScriptingAlertInfoAndErrorMsgs.html 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. Reference: [ServiceNow Docs - GlideForm (g_form) API], [ServiceNow Docs - g_form.addInfoMessage()]


質問 # 123
Which of the following is an available feature in Studio?
Choose 2 answers

  • A. Search branch
  • B. Push to update set
  • C. Merge branches
  • D. Push to external source control

正解:A、C

解説:
Search branch and merge branches are available features in Studio. Search branch allows you to search for a specific branch name or ID in your Git repository. Merge branches allows you to merge changes from one branch to another, resolving any conflicts that may arise. Push to external source control and push to update set are not available features in Studio. Push to external source control is a feature of Source Control Integration, which is a separate application from Studio. Push to update set is a feature of Update Set Previewer, which is also a separate application from Studio. Reference: Studio, Source Control Integration, Update Set Previewer


質問 # 124
Which one of the following is true for a table with the "Allow configuration" Application Access option selected?

  • A. Out of scope applications can create Business Rules for the table
  • B. Out of scope applications can add new tables to the scoped application
  • C. Any user with the application's user role can modify the application's scripts
  • D. Only the in scope application's scripts can create Business Rules for the table

正解: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 Reference: https://community.servicenow.com/community?id=community_question
&sys_id=1a721819dbfa23409a64e15b8a9619d2


質問 # 125
How does the Application Picker interact with Application Scope in ServiceNow?

  • A. Selecting an application from the Application Picker sets the Application Scope.
  • B. Selecting an application from the Application Picker does not set the Application Scope.
  • C. Global is a reserved application that does not appear in the Application Picker.
  • D. Selecting Global in the Application Picker sets the Application Scope to Incident.

正解:A

解説:
Comprehensive and Detailed Step-by-Step
Understanding Application Scope and Picker:
The Application Picker in ServiceNow allows developers to switch between different applications (scopes).
When you select an application from the Application Picker, the Application Scope is set to that application, enabling you to develop or configure within that scope.
Why Other Options Are Incorrect:
Option A: The Global application does appear in the Application Picker.
Option B: Selecting Global does not set the scope to Incident; it sets the scope to the Global application, which is not restricted by scoped boundaries.
Option D: Selecting an application does indeed set the Application Scope.
Reference:
ServiceNow Developer Documentation on Application Scope.


質問 # 126
Which of the following is NOT a trigger type in Flow Designer?

  • A. Schedule
  • B. Record
  • C. Outbound Email
  • D. Application

正解:C

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


質問 # 127
When crafting a scoped application that contains flow actions, what is the application called?

  • A. Action
  • B. Spoke
  • C. Bundle
  • D. Flow

正解:B

解説:
Comprehensive and Detailed Step-by-Step Explanation:
* Definition of a Spoke:A "spoke" is a scoped application or component of an application that contains Flow Designer actions and integrations. Spokes provide reusable functionality and are typically used to extend the capabilities of Flow Designer.
* Why It's Called a Spoke:
* Spokes are part of the ServiceNow Flow Designer framework.
* They contain predefined actions that are reusable across multiple flows. For example, an "Email Spoke" might include actions for sending emails or managing email configurations.
* Why Other Options Are Incorrect:
* Option B (Flow): This refers to an individual flow, not the application containing reusable actions.
* Option C (Bundle): There is no such term as "Bundle" specific to Flow Designer in ServiceNow.
* Option D (Action): While flows contain actions, the scoped application that houses these actions is referred to as a spoke.
References:
* ServiceNow Developer Documentation on Flow Designer Spokes.


質問 # 128
Which source control operation is available from BOTH Studio and the Git Repository?

  • A. Apply Remote Changes
  • B. Stash Local Changes
  • C. Create Branch
  • D. Edit Repository Configurations

正解:C


質問 # 129
How many applications menus can an application have?

  • A. 1, which is used for all application modules
  • B. 3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
  • C. As many as the application design requires
  • D. 2, one for an application's user modules and one for an application's administrator modules

正解:C

解説:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-platform-user-interface/page/administer/navigation- and-ui/task/t_CreateAnApplicationMenu.html


質問 # 130
The Report Designer contains different sections for configuring your report. Which section is used to specify the name of the report, and the table or data source for the report.

  • A. Sources
  • B. Type
  • C. Data
  • D. Configure
  • E. Properties

正解:E


質問 # 131
When configuring a module, what does the Override application menu roles configuration option do?

  • A. Users with the module role but without access to the application menu access the module
  • B. Users with access to the application menu can see the module even if they don't have the module role
  • C. Admin is given access to the module even if Access Controls would ordinarily prevent access
  • D. Self-Service users can access the module even though they do not have roles

正解:A

解説:
Checkbox tooltip: "Show this module when the user has the specified roles. Otherwise the user must have the roles specified by both the application menu and the module."


質問 # 132
a. To replace outdated, inadequate, custom business applications and processes b. To extend service delivery and management to all enterprise departments c. To allow users full access to all ServiceNow tables, records, and fields d. To extend the value of ServiceNow

  • A. b, c, and d
  • B. a, b, and c
  • C. a, b, and d
  • D. a, b, c, and d

正解:C

解説:
The correct combination of statements is a, b, and d. These are possible reasons to build custom applications on ServiceNow:
To replace outdated, inadequate, custom business applications and processes. Building custom applications on ServiceNow can help digitize and automate manual or legacy processes that are not covered by existing ServiceNow solutions. This can improve efficiency, data quality, user experience, and innovation.
To extend service delivery and management to all enterprise departments. Building custom applications on ServiceNow can help provide consistent and scalable services across different functions and teams in the organization. This can enhance collaboration, visibility, productivity, and customer satisfaction.
To extend the value of ServiceNow. Building custom applications on ServiceNow can help leverage the capabilities and benefits of the Now Platform®, such as low-code development tools, workflow automation engine, AI-powered insights, security operations, etc. This can increase agility, resilience, performance, and value.
The statement c is not a valid reason to build custom applications on ServiceNow:
To allow users full access to all ServiceNow tables, records, and fields. Building custom applications on ServiceNow does not imply granting users full access to all data and objects in ServiceNow. Access control rules still apply to custom applications and their components to ensure security and compliance. Reference: Build Custom Apps in ServiceNow - eBook


質問 # 133
What plugin enables the Guided Application Creator?

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

正解:D

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


質問 # 134
Which one of the following is the correct Link Type to select when creating a module that opens the Record Producer UI for a user rather than the ServiceNow form UI?

  • A. HTML (from Arguments)
  • B. Script (from Arguments)
  • C. Content Page
  • D. URL (from Arguments)

正解:D

解説:
Comprehensive and Detailed Step-by-Step Explanation:
* Record Producer Overview:Record Producers in ServiceNow are a way to create records through a simplified user interface. Instead of displaying a typical form, a Record Producer uses a user-friendly UI tailored for quick and intuitive data entry.
* Correct Link Type:
* The URL (from Arguments) option is used to direct the user to a specific URL, such as the Record Producer interface. You can configure the URL in the module to point to the Record Producer by providing its unique sys_id or name.Example URL:
/catalog.do?sys_id=<record_producer_sys_id>
* Incorrect Options Explained:
* Content Page (Option A): This opens a CMS page and is not used for Record Producers.
* Script (from Arguments) (Option B): This runs a custom script but does not link directly to a Record Producer.
* HTML (from Arguments) (Option D): This is used for rendering custom HTML, not for linking to a Record Producer.
References:
* ServiceNow Developer Documentation on Modules and URL Arguments.


質問 # 135
......

試験問題集でCAD練習無料最新のServiceNow練習テスト:https://jp.fast2test.com/CAD-premium-file.html

CAD試験問題、リアルCAD練習問題集:https://drive.google.com/open?id=1u0jr5VTrsdwoBmR1KJH4DTPCiMMNJJ5q


弊社を連絡する

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

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

サポート: 現在連絡 

English Deutsch 繁体中文 한국어