CADのPDFで合格させるスゴ問題集でCAD最新のリアル試験問題 [Q21-Q42]

Share

CADのPDFで合格させるスゴ問題集でCAD最新のリアル試験問題

有効なCADテスト解答CAD試験PDF問題を試そう

質問 # 21
Which of the following statements is true for the Form Designer?
a) To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form.
b) To create a new field on a form's table, drag the appropriate data type from the Field Types tab to the form and then configure the new field.
c) To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button.
d) To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.

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

正解:D

解説:
https://docs.servicenow.com/bundle/tokyo-platform-administration/page/administer/form-administration/concept/c_FormDesign.html


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

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

正解:A


質問 # 23
How can an application link to a repository behind a firewall?

  • A. This option is not supported.
  • B. Link an application to source control through a MID Server.
  • C. Link an application to source control through an access token.
  • D. Link an application to source control with multi-factor authentication.

正解:B

解説:
"Use an existing MID Server to connect to a Source Control repository. Linking or importing an application through a MID Server enables access to repositories behind a firewall."https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/concept/c_


質問 # 24
Which one of the following is true for the Application Picker?

  • A. All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker
  • B. Only custom applications appear in the Application Picker
  • C. Only downloaded applications appear in the Application Picker
  • D. All custom application scope and the Global scope appear in the Application Picker

正解:D

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


質問 # 25
When creating new application files in a scoped application, cross scope access is turned on by default in which of the following?

  • A. Workflow
  • B. REST messages
  • C. Table
  • D. Script Include

正解:C

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


質問 # 26
Application developers configure ServiceNow using industry standard JavaScript to...

  • A. Configure the outgoing email display name
  • B. Extend and add functionality
  • C. Enable the right-click to edit the context menus on applications in the navigator
  • D. Customize the organization's company logo and banner text

正解:B

解説:
Application developers configure ServiceNow using industry standard JavaScript to extend and add functionality. JavaScript is a scripting language that enables developers to create dynamic and interactive web pages, as well as manipulate data and logic on the server-side. ServiceNow provides various APIs and frameworks for developers to use JavaScript to customize and enhance the functionality of their applications, such as client scripts, UI policies, business rules, script includes, UI actions, and more. References: [ServiceNow Docs - JavaScript in ServiceNow], [ServiceNow Docs - Scripting in ServiceNow]


質問 # 27
When configuring a REST Message, the Endpoint is:

  • A. The commands to the REST script to stop execution
  • B. Information about the format of the returned data
  • C. The URI of the data to be accessed, queried, or modified
  • D. The response from the provider indicating there is no data to send back

正解:C

解説:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/integrate/outbound- rest/reference/r_RESTMessageElements.html


質問 # 28
Which objects can be used in Inbound Action scripts?

  • A. current and previous
  • B. current and event
  • C. current and producer
  • D. current and email

正解:B


質問 # 29
Which of the following objects does a Display Business Rule NOT have access to?

  • A. previous
  • B. g_scratchpad
  • C. current
  • D. GlideSystem

正解:A

解説:
A Display Business Rule has access to the current, g_scratchpad, and GlideSystem objects, but not the previous object. The previous object is only available to Before Business Rules4. References: Business Rule API
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html


質問 # 30
Client-side scripts manage what?

  • A. Database and backend
  • B. Playbook access
  • C. User access
  • D. Forms and Forms Fields

正解:A

解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/server-scripting/concept/c_ServerScripting.html


質問 # 31
A scoped application containing Flow Designer content dedicated to a particular application is called a(n):

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

正解:D

解説:
https://docs.servicenow.com/bundle/paris-servicenow-platform/page/administer/flow-designer/concept/spokes.html A spoke is a scoped application containing Flow Designer content dedicated to a particular application or record type. Flow Designer provides a set of core actions to automate Now Platform processes. You can add application-specific core actions by activating the associated spoke.


質問 # 32
Application developers configure ServiceNow using industry standard JavaScript to...

  • A. Configure the outgoing email display name
  • B. Extend and add functionality
  • C. Enable the right-click to edit the context menus on applications in the navigator
  • D. Customize the organization's company logo and banner text

正解:B

解説:
Application developers configure ServiceNow using industry standard JavaScript to extend and add functionality. JavaScript is a scripting language that enables developers to create dynamic and interactive web pages, as well as manipulate data and logic on the server-side. ServiceNow provides various APIs and frameworks for developers to use JavaScript to customize and enhance the functionality of their applications, such as client scripts, UI policies, business rules, script includes, UI actions, and more. Reference: [ServiceNow Docs - JavaScript in ServiceNow], [ServiceNow Docs - Scripting in ServiceNow]


質問 # 33
In a Business Rule, which one of the following returns the sys_id of the currently logged in user?

  • A. g_form getUserSysy
  • B. gs.getUserSysID()
  • C. g_form getUserID()
  • D. gs.getUserID()

正解:D

解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/app-store/dev_portal/API_reference/glideSystemScoped/concept/c_GlideSystemScopedAPI.html


質問 # 34
Which one of the following database operations cannot be controlled with Application Access?

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

正解:D

解説:
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.
Reference:
Application Access
[GlideRecord methods]


質問 # 35
What is a Module?

  • A. A group of menus, or pages, providing related information and functionality to end-users
  • B. The functionality within an application menu such as opening a page in the content frame or a separate tab or window
  • C. A way of helping users quickly access information and services by filtering the items in the Application Navigator
  • D. A web-based way of providing software to end-users

正解:B

解説:
https://docs.servicenow.com/bundle/rome-platform-user-interface/page/administer/navigation-and-ui/task/t_CreateAModule.html A module is the functionality within an application menu such as opening a page in the content frame or a separate tab or window. For example, Open is a module under the Problem application menu that opens a list of problem records. Modules are the second level navigation options for applications. Reference: Modules | ServiceNow Tutorials


質問 # 36
One of the uses of the ServiceNow REST API Explorer is:

  • A. Practice using REST to interact with public data providers
  • B. Convert SOAP Message functions to REST methods
  • C. Create sample code for sending REST requests to ServiceNow
  • D. Find resources on the web for learning about REST

正解:C

解説:
One of the uses of the ServiceNow REST API Explorer is to create sample code for sending REST requests to ServiceNow. The REST API Explorer is a tool that allows you to discover and test the ServiceNow REST APIs. You can select an API endpoint, set the HTTP method, parameters, headers, and body, and then execute the request. The REST API Explorer will show you the response status, headers, and body, as well as generate sample code for various languages and frameworks, such as cURL, Java, JavaScript, Node.js, Python, Ruby, and more. Reference: [Use the REST API Explorer - Product Documentation: Tokyo - ServiceNow], [Introduction to Scripted REST APIs - ServiceNow Developers]


質問 # 37
Which one of the following is part of the client-side scripting API?

  • A. GlideUser object (g_user)
  • B. GlideSystem object (gs)
  • C. current and previous objects
  • D. workflow.scratchpad

正解:C


質問 # 38
From the list below, identify one reason an application might NOT be a good fit with ServiceNow.
The application:

  • A. Needs workflow to manage processes
  • B. Uses forms extensively to interact with data
  • C. Requires reporting capabilities
  • D. Requires "as-is" use of low-level programming libraries

正解:D

解説:
From the list below, the following is a reason an application might not be a good fit with ServiceNow:
Requires "as-is" use of low-level programming libraries. This is the correct answer because ServiceNow is a high-level platform that abstracts away the low-level details of the underlying infrastructure and technology stack. ServiceNow provides a rich set of APIs, tools, and features that allow users to develop applications without coding or with minimal coding. However, ServiceNow does not support the direct


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

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

正解:D

解説:
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." The following is true for the Override application menu roles configuration option when configuring a module:
Users with the module role but without access to the application menu access the module. This is true because the Override application menu roles option allows users to bypass the application menu role requirement and access the module directly if they have the module role. For example, if a module has the itil role and the Override application menu roles option enabled, and the application menu has the admin role, then a user who has the itil role but not the admin role can still access the module.
The following are not true for the Override application menu roles configuration option when configuring a module:
Self-Service users can access the module even though they do not have roles. This is false because the Override application menu roles option does not grant access to the module to users who do not have any roles. Self-Service users are users who do not have any roles assigned to them and can only access the Self-Service portal and the Knowledge Base. To access the module, users need to have at least the module role.
Admin is given access to the module even if Access Controls would ordinarily prevent access. This is false because the Override application menu roles option does not override the Access Control (ACL) rules that apply to the module. Access Control rules are used to restrict the access to the data and functionality of the ServiceNow platform based on the user's roles and conditions. Admin is a role


質問 # 40
Which of the following objects does a Display Business Rule NOT have access to?

  • A. previous
  • B. g_scratchpad
  • C. current
  • D. GlideSystem

正解:A

解説:
Explanation/Reference: https://community.servicenow.com/community?
id=community_question&sys_id=8af90f29db5cdbc01dcaf3231f96197c


質問 # 41
To see what scripts, reports, and other application artifacts will be in a published application:

  • A. Open the list of Update Sets for the instance
  • B. Open the artifact records individually to verify the value in the Application field
  • C. Enter the name of the Application in the Global search field
  • D. Examine the Application Files Related List in the application to be published

正解:D

解説:
To see what scripts, reports, and other application artifacts will be in a published application, the best option is to examine the Application Files Related List in the application to be published. This will show all the application files that belong to the application, grouped by file type and scope. You can also filter, sort, or search the list to find specific files.
The following options are not the best ways to see what application artifacts will be in a published application:
* Enter the name of the Application in the Global search field. This will perform a global text search on the instance and return any records that match the application name, which may include irrelevant or incomplete results.
* Open the list of Update Sets for the instance. This will show all the update sets that have been created or imported on the instance, but notnecessarily the ones that belong to the application to be published.
Update sets are used to move customizations between instances, not to publish applications to the ServiceNow Store or Share.
* Open the artifact records individually to verify the value in the Application field. This will require opening each record that may be part of the application and checking the Application field, which is tedious and error-prone. References: Publish an Application, Application Files


質問 # 42
......


ServiceNow CAD試験は、ServiceNowプラットフォームでアプリケーションを開発する際の個人の知識とスキルをテストするように設計されています。この試験は、ServiceNowプラットフォームを使用してアプリケーションを開発した経験があり、スキルと知識を検証しようとしている個人を対象としています。試験は2つの部分に分割されます。最初の部分は基本的な概念をカバーし、2番目の部分は高度なトピックをカバーしています。

 

CAD問題集はあなたの合格を必ず保証します:https://jp.fast2test.com/CAD-premium-file.html

CADテスト問題集とオンライン試験エンジン:https://drive.google.com/open?id=1-Xlu6VtUOBNhNXWXpPUV5fT7XOBSNwPA


弊社を連絡する

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

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

サポート: 現在連絡 

English Deutsch 繁体中文 한국어