EXAM_4 (41-80) Flashcards
(40 cards)
To grant a user access to an application in an SAP BTP subaccount, what must you assign to this user?
A role collection
Which of the following are the fundamental guidelines of a twelve-factor application? Note: There are 3 correct answers to this question.
- Stateless and self-contained application processes
- Traceability and reproducibility of all changes
- Separation of application code and runtime configuration
After you create a business process in SAP Build Process Automation by giving it a name and identifier and clicking “Create,” what can you add to it? Note: There are 3 correct answers to this question.
- Automations
- Decisions
- Forms
You want to register custom event handlers using instances of CAP Node.js SDK classes. Which one do you use?
cds.Service
What are tasks of the approuter? Note: There are 3 correct answers to this question.
- Forwarding user requests to the XSUAA service for authentication and authorization.
- Routing requests from the web browser to the provider of the UI service.
- Routing requests from the web browser to the CAP service.
You want to implement an event handler to show a console log once a supplier record is read. What is the correct syntax to implement this?
const cds = require(‘@sap/cds’)
module.exports = cds.service.impl(function () {
const {Supplier) = this.entities()
this after(‘each Supplier, row =>{ console.log(“Read Supplier: ${row.ID}’)
})
What is the correct sequence of steps when implementing Tenant-aware Persistence?
- Configure a data source
- Configure Hibernate for multi-tenancy
- Persisting and accessing the data
- Tenant onboarding and offboarding
What must you do to pull a container image from a private registry? Note: There are 2 correct answers to this question.
- Provide credentials in the pod manifest via “imagePullSecrets” in spec.template.spec.
- Create a secret with the type “kubernetes.io/dockerconfigjson”.
For which workload requirements would you use State ful Set? Note: There are 3 correct answers to this question.
- Ordered, graceful deployment and scaling
- Stable, unique network identifiers
- Stable, persistent storage
What is mandatory when working on public Git in a distributed environment?
Connect to a central repository to share your project contribution.
What can you define in the application router’s design-time descriptor: xs-app.json? Note: There are 2 correct answers to this question.
- routes
- authenticationMethod
In SAP Build Process Automation, what is a policy?
A collection of business rules
Which of the following are use cases for SAP Business Technology Platform? Note: There are 3 correct answers to this question.
- Build innovative digital apps.
- Integrate apps, data, and processes.
- Extend cloud and on-premise apps.
Which formats are supported by OData?
Note: There are 2 correct answers to this question.
- JSON
- XML-based AtomPub
Which of the following are parts of the architecture of the SAP BTP Service Operator for Kubernetes? Note: There are 2 correct answers to this question.
- API server
- Service broker
You want to create a new service definition in your CAP project. In which folder do you place the
service definition .cds file?
/srv
Which are characteristics of Continuous Delivery? Note: There are 3 correct answers to this question.
- High degree of automation
- Fast recovery from defects
- Short release cycle
What is one of the required steps to enable authentication support in CAP?
Install a Node.js module called passport.
What is the prerequisite before you can create a CI/CD job for a project?
The project has been shared to a remote Git repository.
What are some benefits of using the Istio service mesh in SAP BTP, Kyma runtime? Note: There are 3 correct answers to this question.
- Distributed tracing can be used to trace request flows.
- Networking is decoupled from the application logic.
- Traffic management between services can be controlled.
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.
- Type safety for functions
- Easy access to create, update, and delete operations
- Auto-completion of function names and properties
What do you use to update the Git history of the local file you are working on?
Commit
Why are extensions on top of SAP S/4HANA Cloud NOT affected by the quarterly update cycle of SAP S/4HANA Cloud?
The public interfaces of SAP S/4HANA represent a stable contract across the versions of SAP S/4HANA Cloud.
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.</event></Phase></phase>
- after
- before