[Oct-2021] 1z0-1034-20 Dumps Full Questions - CX Service Exam Study Guide [Q25-Q41] | DumpsMaterials

[Oct-2021] 1z0-1034-20 Dumps Full Questions - CX Service Exam Study Guide [Q25-Q41]

Share

[Oct-2021] 1z0-1034-20 Dumps Full Questions - CX Service Exam Study Guide

Exam Questions and Answers for  1z0-1034-20 Study Guide

NEW QUESTION 25
Identify two items that accurately describe custom objects.

  • A. Custom objects can be exported from an Oracle B2C Service instance and imported to a different Oracle B2C Service instance.
  • B. Indexes for custom objects cannot be user defined. They are autogenerated by the system after query analysis.
  • C. Saved custom objects can be used in the development environment of a Customer Portal, but the custom objects must be deployed to be used in the production environment of the Customer Portal.
  • D. It is not possible to roll back deployment of custom objects.
  • E. CRUD permissions for custom objects can be set per profile.
  • F. Fields on a custom object can be created, but they can never be deleted.

Answer: A,D

 

NEW QUESTION 26
Which statement is true about the JavaScript API?

  • A. It cannot be used in Custom Object workspaces.
  • B. It is available as JavaScript objects and can be exposed through browser controls in a workspace.
  • C. It comes with in-built exception handling.
  • D. It Is available when you use the Connect Common Object Model CCOM for API operations.

Answer: D

 

NEW QUESTION 27
In a Widget Controller file, which is the correct way to capture the Contact ID (c_id) from the URL parameter, query the database to fetch contact details, assign contact details in the class variable, and access it in the view.php file?
A)

B)

C)

D)

  • A. OptionB
  • B. OptionA
  • C. OptionD
  • D. OptionC

Answer: C

 

NEW QUESTION 28
There is a requirement to create an add-in that has limited functionality for most profiles. However, supervisor profiles are allowed to use the full functionality of this add-in. How can you set up and deploy this add-in?

  • A. For all supervisor accounts, open the Add-In tab of the Account Workspace and select the Administrator check box next to the add-in.
  • B. You can deploy the add-in with a configuration file zipped with the DLL. Change the configuration file for the supervisor profiles so that the DLL will allow full access for those users.
  • C. You can create a serverconfigProperty called supervisorRole, which will be defaulted to false. When you deploy the add-in using the Add-In Manager, you will change the SupervisorRole to true for the Supervisor profiles. The code within the add-in will use this serverconfigProperty to determine if full functionality of the add-in should be allowed.
  • D. Add-ins are deployed as DLLs to Oracle B2C Service and there is no way to divide permissions of these DLLs.
  • E. Using the Add-In Manager, go to the Profile Access section of the add-in. For all of the Supervisor profiles, select the Run as Administrator check box.

Answer: C

 

NEW QUESTION 29
You have extended the standard Contact model to a custom model named Extendedcontact, which contains the addcustomName ()function. You have completed the mapping in extensions.ymi file already.
What is the correct code to call this function from a custom controller?
A)

B)

C)

D)

E)

  • A. Option A
  • B. Option D
  • C. Option B
  • D. Option C

Answer: B

 

NEW QUESTION 30
Which is the correct way to update the primary email address of a contact in Oracle B2C Service with the ID =
8007000 and the email [email protected]?
A)

B)

C)

D)

E)

  • A. Option A
  • B. Option D
  • C. Option B
  • D. Option C
  • E. Option E

Answer: A

 

NEW QUESTION 31
Identify two statements that are true about system attributes.

  • A. In the Connect PHP API, system attributes are referenced via the CustomFields . <packagename>. <attributename> syntax.
  • B. System attributes can be used by the Syndicated ConditionalChatLink widget.
  • C. System attributes can be used directly by the Formlnput widget In the Customer Portal framework.
  • D. System attributes must exist only in the CO package.

Answer: A,D

 

NEW QUESTION 32
Which two methods can be used in the Connect for PHP API to obtain the error code and error text when the connectAPiError exception is thrown?

  • A. getCodeO
  • B. errorCodeO
  • C. getMessageO
  • D. errorMessags()
  • E. logMessageO

Answer: C,E

 

NEW QUESTION 33
Identify the option that accurately describes how to set a report filter from code by using Connect Web Services for SOAP.

  • A. Report filters cannot be set from code. The user is required to set the filter in the Analytics Report Designer of the Agent Desktop.
  • B. An array of AnalyticsReportFiiter can be dynamically created and set on the AnalyticsReport object that is passed to the RightNowSyncPortciient. RunAnalyticsReport method.
  • C. RightNowSyncPortciient.GetReportFiiters must be used first to retrieve the report filters from the report.
    RightNowSyncPortciient .SetReportFiiters can then be used to set the filters in code. The report can then be run USing RightNowSyncPortciient. RunAnalyticsReport-
  • D. RightNowSyncPortciient.setReportFiiters can be used directly to set the filters in code. The report can then be run using RightNowSyncPortciient. RunAnalyticsReport.

Answer: C

 

NEW QUESTION 34
Which statement is true about the Knowledge API?

  • A. In the customer portal framework, each unique visit by a user is tracked through an interaction ID.
  • B. A new interaction ID is automatically created as soon as an old ID expires.
  • C. In the customer portal framework, each unique visit by a user is tracked through the web session
  • D. A unique interaction ID is allocated for each unique user and can be reused by the users for multiple visits for the duration specified by the VISIT_MAX_TIME configuration value.

Answer: A

 

NEW QUESTION 35
The following code snippet is being used in a custom widget view on a page that is accessible to users with disabilities. Identify the error in the code.

  • A. The alt attribute on the image tag is missing.
  • B. Images cannot be used on pages that are accessible to users with disabilities.
  • C. Image size needs to be bigger.
  • D. Custom widgets cannot be used on pages that are accessible to users with disabilities.

Answer: C

 

NEW QUESTION 36
You have deployed a CPM and would like to log any errors that happen in its execution. Which option is not available to you from the CPM logic?

  • A. logMsasage ( "message" ) ;
  • B. writing to a custom logging table within the CPM code
  • C. the log files maintained in the configuration panel in the console
  • D. writing to the notes field of the object on which you are performing CPM actions

Answer: C

 

NEW QUESTION 37
What two benefits are gained by using Message Bases to control page content in Customer Portal?

  • A. quicker initial page setup
  • B. quicker site copies to different interfaces
  • C. less configuration
  • D. Automatic Language Translation!
  • E. one point of change for page content changes

Answer: B,D

 

NEW QUESTION 38
Your site has a custom object deployed under a package named ProductRegistration and the object is named RegisteredProduct. You are trying to create a new entry in the RegisteredProduct object from a custom model using ConnectPHP.
Identify the correct code that will create the new entry in the RegisteredProduct object.
A)

B)

C)

D)

  • A. Option D
  • B. Option B
  • C. Option A
  • D. Option C

Answer: B

 

NEW QUESTION 39
Identify two results of changing the MOD_cp_DEVELOPMENT_ENABLED configuration setting to no.

  • A. It disables access to the Customer Portal Administration area.
  • B. It disables access to Customer Portal files via WebDAV except for access to the assets folder.
  • C. It disables access to Customer Portal files via WebDAV.
  • D. It disables all customizations on the site and redirects end users to Reference Implementation.

Answer: B,C

 

NEW QUESTION 40
After a recent edit to the Support Home page, your client notices that Analytics is showing a massive drop in visits being recorded.
Which edit caused the reporting change?

  • A. The click_stream attribute is missing or incorrect.
  • B. The post_report_get_data hook is missing or incorrect.
  • C. The pre_report_get_data hook is missing or incorrect.
  • D. The pre_paga_render hook is missing or incorrect.
  • E. The default mapping is missing or incorrect.

Answer: D

 

NEW QUESTION 41
......

Oracle B2C Service Integration and Development 2020 Implementation Essentials Free Update With 100% Exam Passing Guarantee: https://www.dumpsmaterials.com/1z0-1034-20-real-torrent.html