SAP C_CPE_2409 Übungsprüfungen
Zuletzt aktualisiert am 04.05.2025- Prüfungscode: C_CPE_2409
- Prüfungsname: SAP Certified Associate - Backend Developer - SAP Cloud Application Programming Model
- Zertifizierungsanbieter: SAP
- Zuletzt aktualisiert am: 04.05.2025
What are some scenarios where you would use the SAP Cloud SDK in your application? Note: There are 2 correct answers to this question.
- A . You want to allow key users to create fields
- B . You need advanced features in your app such as resilience and caching
- C . You want to add new features to an existing Java application
- D . You want to build extensions using .NET
With respect to the Flow principle of DevOps, which are flow inhibitors? Note: There are 3 correct answers to this question.
- A . Manual testing of software
- B . Manually created software environment
- C . Source code management tool
- D . Manually coded user interfaces
- E . Overly tight architectures on a technical level
What is a necessary step to implement a custom error handler in the CAP SDK for Node.js?
- A . Register the error handler function for the before phase of the error.
- B . Catch exceptions during a CRUD operation.
- C . Register the error handler function for the on phase of the error.
- D . Write a custom Node.js package.
What is mandatory when working on public Git in a distributed environment?
- A . Connect to a central repository to share your project contribution.
- B . Keep the entire history of your project locally.
- C . Block the piece of code you are working on in the central repository.
- D . Buy the software license on the Git website.
What can you define in the application router’s design-time descriptor: xs-app.json? Note: There are 2 correct answers to this question.
- A . role-templates
- B . routes
- C . authenticationMethod
- D . modules
Your company is using the SAP Authorization and Trust Management service in conjunction with the XSUAA service to authorize their applications. Where do you bundle your defined scopes in role-templates?
- A . In an xs-security.json fille
- B . In a role-collection
- C . In an instance of the XSUAA service
You want a service to react to a specific event.
What can you specify as <phase> in the statement srv. <Phase> (<event>)? Note: There are 2 correct answers to this question.
- A . end
- B . begin
- C . after
- D . before
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‘;
Which is a valid way to extend the entity with the aspect?
- A . entity Books {
key ID: UUID @(Core.computed: true);
title: String;
author: String;
} - 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;
}
According to SAP CAP best practices, which error types should you NOT catch? Note: There are 2 correct answers to this question.
- A . Programming errors
- B . Rejections of promises
- C . Runtime errors
- D . Unexpected errors
How do you debug a Node.js module in SAP Business Application Studio?
- A . Add the sap.hana.xs.debugger:Debugger role to the HDI container’s #RT user.
- B . Start the debugger from the CF command line interface and run the program.
- C . Set the enabled parameter to true in the section debugger of the xsengine.ini file.
- D . Attach the debugger to the application.