[2023年06月12日] 最速準備で試験合格!CAD問題の事前予備 [Q29-Q45]

Share

[2023年06月12日] 最速準備で試験合格!CAD問題の事前予備

CADのPDF問題集リアル2023最近更新された問題

質問 # 29
Here is the Business Rule script template:

This type of JavaScript function is known as:

  • A. Anonymous
  • B. Self-invoking
  • C. Scoped
  • D. Constructor

正解:C


質問 # 30
Which of the following are configured in an Email Notification?
a)Who will receive the notification.
b)What content will be in the notification.
c)When to send the notification.
d)How to send the notification.

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

正解:D


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

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

正解:B

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


質問 # 32
Which one of the following objects CANNOT be used in a Script Action script?

  • A. previous
  • B. current
  • C. event
  • D. GlideRecord

正解:A

解説:
https://docs.servicenow.com/bundle/tokyo-platform-administration/page/administer/platform-events/reference/r_ScriptActions.html


質問 # 33
When a ServiceNow instance requests information from a web service, ServiceNow is the web service:

  • A. Publisher
  • B. Consumer
  • C. Specialist
  • D. Provider

正解:B

解説:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/integrate/web-services/ reference/r_AvailableWebServices.html


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

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

正解:C


質問 # 35
Which one of the following is true?

  • A. A UI Policy's Actions and Scripts execute at the same time
  • B. A UI Policy's Scripts execute before the UI Policy's Actions
  • C. The execution order for a UI Policy's Scripts and Actions is determined at runtime
  • D. A UI Policy's Actions execute before the UI Policy's Scripts

正解:B

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


質問 # 36
Which of the following is NOT a way to install an application on a ServiceNow instance?

  • A. Select the Copy button on the application record
  • B. Download and install an application from the ServiceNow Share web site
  • C. Install an application from the Application Repository
  • D. Download and install a third-party application from the ServiceNow Store

正解:A

解説:
There is no "copy" button on the application record (at least I couldn't see one). Also, see here: https://docs.servicenow.com/bundle/sandiego-application-development/page/build/applications/reference/r_ManagingApplications.html


質問 # 37
Which one of the following is NOT a purpose of application scoping?

  • A. Provide controls for how scripts from another scope can alter tables in a scoped application
  • B. Provide a relationship between application artifacts
  • C. Provide a namespace (prefix and scope name) to prevent cross application name collisions
  • D. Provide a way of tracking the user who developed an application

正解:A


質問 # 38
What are the benefits of storing the majority of an Application's server-side script logic in a Script Include?
a) This makes execution faster.
b) Only run when called from a script.
c) The script logic can be hidden when the Application is installed from the ServiceNow Store. d. For some changes to application logic there is only one place to make edits.

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

正解:D

解説:
https://developer.servicenow.com/dev.do#!/learn/courses/tokyo/app_store_learnv2_scripting_tokyo_scripting_in_servicenow/app_store_learnv2_scripting_tokyo_server_side_scripting/app_store_learnv2_scripting_tokyo_script_includes


質問 # 39
Which of the following is true about deleting fields from a table?

  • A. Table records are deleted when a field is detected
  • B. User-defined non-inherited fields can be detected
  • C. Any field on a table can be deleted
  • D. Inherited fields can be detected

正解:B


質問 # 40
When a selecting a data type for a field that will be displayed on a form, which of the following statements is NOT correct?

  • A. Use the string data type for a free-form text field.
  • B. Use the Choice data type to limit options in a field
  • C. Use the Data data type to enter the date and time of day.
  • D. Use the Phone Number data type to automate phone number data validation.

正解:C


質問 # 41
Which of the following GuideRecord methods run a query against a database table?
Choose 3 answers

  • A. -query( )
  • B. get(
  • C. query()
  • D. -get()
  • E. runQuery()

正解:A、B、C

解説:
https://docs.servicenow.com/bundle/tokyo-application-development/page/app-store/dev_portal/API_reference/GlideQuery/concept/GlideQueryGlobalAPI.html#GlideQueryAPI
https://docs.servicenow.com/bundle/tokyo-application-development/page/app-store/dev_portal/API_reference/glideRecordScoped/concept/c_GlideRecordScopedAPI.html


質問 # 42
Which method is used to retrieve Application Property values in a script?

  • A. gs.getProperty()
  • B. gs.getAppProperty()
  • C. g_form.getAppProperty()
  • D. g_form.getProperty()

正解:A

解説:
https://developer.servicenow.com/dev.do#!/learn/learning-plans/tokyo/new_to_servicenow/app_store_learnv2_automatingapps_tokyo_use_application_properties


質問 # 43
Identify the incorrect statement about Delegated Development in ServiceNow.

  • A. Administrators can grant the developer access to script fields.
  • B. Administrators can grant the developer access to security records.
  • C. Administrators can specify which application file types the developer can access.
  • D. Administrators can grant non-admin users the ability to develop global applications.

正解:D

解説:
Administrators can grant non-admin users the ability to develop global applications. Delegated Development is for the scoped applications only


質問 # 44
Which one of the following client-side scripts apply to Record Producers?

  • A. UI Scripts and Record Producer Scripts
  • B. Client Scripts and UI Policies
  • C. UI Scripts and UI Actions
  • D. Catalog Client Scripts and Catalog UI Policies

正解:D


質問 # 45
......

CAD問題集と練習テスト(102試験問題):https://www.goshiken.com/ServiceNow/CAD-mondaishu.html

リリースServiceNow CAD更新された問題PDF:https://drive.google.com/open?id=1ukBmysM6S_Idz4rU0m81zh-wCY2c_wqP