What are some principles of continuous integration? Note: There are 2 to choose.
A. Automated tests
B. Automated deployment to the productivesystem
C. Automated builds
D. Automated code change pushes
What kind of offering is Cloud Foundry?
A. Platform as a Service (PaaS)
B. Infrastructure as a Service (IaaS)
C. Software as a Service (SaaS)
D. Functions as a Service (FaaS)
Your customer presents you with the following UIrequirements: Users need to work through a comparatively small set of items, one by one. Multiple views of the same content. One kind of data visualization. Which SAP Fiori elements floorplan do you recommend they use?
A. Analytical list page
B. Worklist
C. Object page
D. List report
Which of the following are capabilities of the SAP Cloud Connector? Note: There are 2 to choose.
A. Providing control over cloud to on-premise connections
B. Providing control over cloud to cloud connections
C. Connect an SAP S/4HANA Cloud system with the SAP BTP
D. Connecting an SAP S/4HANA system with the SAP BTP
Which management tool can you use to deploy aCAP project into a space of your SAP BTP subaccount?
A. Cloud Foundry command line interface
B. APIs for SAP BTP
C. SAP BTP command line interface
In an SAP Business Application Studio project, what does the "cf push" command do?
A. It creates the service instances of the services defined in theservice-manifest.yml file.
B. It deploys the application modules defined in the manifest.yaml file into the Cloud Foundry account.
C. It updates the service instances of the services defined in the service-manifest.yml file.
Which basic user types exist on the SAP Business Technology Platform? Note: There are 2 to choose.
A. Platform users
B. Application users
C. Technical users
D. Business users
In your Gitsystem, you have set up a webhook for your SAP Continuous Integration and Delivery pipeline. What kind of request does this webhook send to the specified payload URL?
A. PATCH request
B. POST request
C. PUT request
D. GET request
You initialize a new CAP project with initial project structure using a generator in SAP Business Application Studio. What are some of the default elements beingcreated? Note: There are 2 to choose.
A. file package.json
B. file manifest.yml
C. folder /approuter
D. folder /app
You have configured an approuter by creating the xs-app.json file in the approuter folder with thefollowing content:
{ ... "authenticationMethod": "route", ... }, "routes": [ { "source": "^/app/(.*)$", "target": "$1", "localDir": "resources", "authenticationType": "xsuaa" }, { "source": "^/service/(.*)$", "destination": "srv-binding", "authenticationType": "xsuaa" } ] }
What does this routes array tell the approuter? Note: There are 2 correct answers to this question.
A. The files in the resources folder will be served for all requests to /app.
B. The files requested for /app will be put to the resources folder.
C. All requests starting with /service will be forwarded to the CAP service.
D. All requests starting with /service will be targeted to the folder resources.