SAP C_CPE_16 SAP Certified Associate – Backend Developer – SAP Cloud Application Programming Model Online Training
SAP C_CPE_16 Online Training
The questions for C_CPE_16 were last updated at Nov 19,2024.
- Exam Code: C_CPE_16
- Exam Name: SAP Certified Associate - Backend Developer - SAP Cloud Application Programming Model
- Certification Provider: SAP
- Latest update: Nov 19,2024
What can you use to register the JavaScript implementation of an event handler for external services to the framework?
- A . An inline function passed to result of cds.connect()
- B . An inline function passed to result of cds.serve()
- C . A.js file with the same name as the .cds file
- D . An @impl annotation in your CDS model fille
In SAP Build Process Automation, what is a policy?
- A . A guide to business process mapping
- B . A collection of decisions
- C . A basis for making business rules
- D . A collection of business rules
What are some characteristics of YAML files? Note: There are 2 correct answers to this question.
- A . YAML files can be used as configuration files.
- B . YAML files are also valid JSON files.
- C . YAML files are based on XML.
- D . YAML files rely on correct indentation.
Which of the following are benefits of using the OData Virtual Data Model of the SAP Cloud SDK? Note: There are 3 correct answers to this question.
- A . Commonly used SQL query technology
- B . Easy access to create, update, and delete operations
- C . Type safety for functions
- D . Auto-completion of function names and properties
- E . Database procedures provided out of the box
What is the prerequisite before you can create a CI/CD job for a project?
- A . The project has been shared to a remote Git repository.
- B . The project has been deployed.
- C . The project has been previewed.
What are the main features and capabilities of the app router? Note: There are 3 correct answers to this question.
- A . It can serve static content such as web pages, SAPUI5 or other client side code.
- B . It manages the authentication flows for the application.
- C . It acts as an authorization server.
- D . It downloads all necessary libraries.
- E . It is the central entry point of the application.
Your CAP project contains an entity called Books. You want to extend the Books entity with the managed aspect.
You have already imported the aspect from the ‘@sap/cds/common’ package (see code).
using {managed} from ‘@sap/cds/common’;
- A . entity Books {
key ID: UUID @(Core.computed: true);
title: String;
author: String;
}
Which is a valid way to extend the entity with the aspect? - B . entity Books: managed {
key ID: UUID @(Core.Computed: true);
title: String;
author: String;
} - C . entity Books: {
key ID: UUID @(Core.Computed: true);
title: String;
author: String;
}
aspect managed Books {} - D . entity Books: {
key ID: UUID (Core.Computed: true);
title: String;
author: String;
aspect managed;
}
You need to secure your application in the Cloud Foundry environment.
In which file do you maintain routes during design time?
- A . xs-app.json
- B . mta.yml
- C . C xs-security.json
- D . C manifest.yml
Which actions are executed in Cloud Foundry under the Deploy & Execute phase when you run an application? Note: There are 2 correct answers to this question.
- A . Fueling generic runtimes to serve recurring tasks automatically
- B . Integrating the data with other SAP systems
- C . Declaratively capturing domain knowledge in CDS models
- D . Maximizing boilerplate code to real custom logic
When you create an API Rule for a service, what is created automatically?
- A . A Helm Chart
- B . An Istio VirtualService
- C . A Kubernetes Deployment
- D . A Kubernetes Service