btp extension developer 01
![]() |
![]() |
![]() |
Title of test:![]() btp extension developer 01 Description: 01 extension developer |




New Comment |
---|
NO RECORDS |
You have created an SAP BTP subaccount and want to use Cloud Foundry. What is the correct order of next steps?. Enable Cloud Foundry. Create space . Create org. Create quota plan. Create quota plan. Create org. Create space. Enable Cloud Foundry. Create quota plan. Enable Cloud Foundry. Create space. Create org. Enable Cloud Foundry. Create org. Create space. Create quota plan. What is the maximum number of running threads per application instance?. 10420. 14200. 8192. 1024. According to SAP CAP best practices, which error types should you NOT catch? Note: There are 2 to choose. Programming errors. Rejections of promises. Runtime errors. Unexpected errors. Your customer presents you with the following UI requirements: Users work on different kinds of items. Different visualizations without interactions between the visualizations. No drilldown. Which SAP Fiori elements floorplan do you recommend they use?. Worklist. List report. Object page. Analytical list page. You want to create a new service definition in your CAP project. In which folder do you place the service definition .cds file?. /root. /app. /db. /srv. What is the standard health check time limit of a Cloud Foundry application?. 30 seconds. 90 seconds. 60 seconds. 180 second. Which of the following benefits best describe the SAP BTP, Cloud foundry environment? Note: There are 3 to choose. Automatic application routing, load balancing, health checks, and multilevel self-healing. Orchestration of microservices and serverless functions. Platform-managed application security patching and updates. Integration of the SAP NetWeaver platform. Simplified developer experience for business application development. You have configured an approuter by creating the xs-app.json file in the approuter folder with the following 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. The files in the resources folder will be served for all requests to /app. The files requested for /app will be put to the resources folder. All requests starting with /service will be targeted to the folder resources. All requests starting with /service will be forwarded to the CAP service. In an SAP Business Application Studio project, what does the "cf push" command do?qs.html). It updates the service instances of the services defined in the service-manifest.yml file. It deploys the application modules defined in the manifest.yaml file into the Cloud Foundry account. It creates the service instances of the services defined in the service-manifest.yml file. What is JavaScript Object Notation (JSON)?. A simple way to annotate objects in JavaScript. An open-standard format to structure data transferred using web technologies. An open-standard format to structure JavaScript programs. A notation command for automatically instantiating JavaScript objects. Which of the following environments run on the SAP multi-cloud foundation? Note: There are 2 to choose. Kyma environment. Cloud Foundry environment. Neo environment. Netweaver environment. What are some characteristics of OData?. OData is an architectural design template for hypermedia information systems. OData is RESTful. OData uses the SOAP protocol. OData builds on HTTP, AtomPub, and JSON using URIs to address and access data feed resources. What are some core principles of the design philosophy of SAP Fiori? Note: There are 3 to choose. Productive. Adaptive. Coherent. Role-based. Intuitive. Which web browsers are officially supported in SAP Business Application Studio? Note: There are 3 to choose. macOS Safari. Mozilla Firefox. Internet Explorer. Google Chrome. Microsoft Edge. Which files are added to your CAP project when you run the "cds add pipeline" command in an SAP Business Application Studio terminal? Note: There are 2 to choose. A file named Jenkinsfile. A .pipeline folder with a config.yml file. A Jenkins folder with a manifest.yml file. A .pipeline folder with a manifest.yml file. How many administrators can be assigned to a global account?. 1 - n. O -1. 0 - n. What information does the SAP Destination service provide to your applications to connect to a remote service or system?. Semantic information about the target resource. Connectivity proxy information for the target resource. Technical information about the target resource. By default, which file describes scopes and role-templates of an application for the instantiation of an XSUAA service instance?. xs-security.json. package.json. services-manifest.yml. manifest.yml. You have developed a risk service application in CAP. To which file must you add restrictions - @(restrict...) - to add authorizations to your service?. xs-security.js. srv/risk-service.cds. package-lock.json. srv/risk-service.js. Which event phases can you use with CAP event handlers by default? Note: There are 3 to choose. between. after. while. on. before. What are some characteristics of CAP event handling? Note: There are 2 to choose. You can register event handlers with instances of cds.service to add custom logic. You must use the handler registration API srv.emit() to de-register event handlers. You can register multiple event handlers for each event phase. You can register only one event handler for a specific event. What are some characteristics of JSON files? Note: There are 2 to choose. JSON files contain JavaScript commands. JSON files are based on XML. JSON files are also valid YAML files. JSON files contain human-readable data. Which of the following are characteristics of the SAP Business Technology Platform, ABAP Environment? Note: There are 2 to choose. Runs within the Cloud Foundry environment. Runs within the Kyma environment. Is based on the latest SAP NetWeaver Application Server for ABAP release. Is based on the latest ABAP platform cloud release. You have developed a CAP project and added the XSUAA security configuration. What information is stored in the xs-security.json file? Note: There are 2 to choose. scopes. users. roles. role-templates. Which are standard build packs provided by SAP to develop applications in the SAP BTP, Cloud Foundry environment? Note: There are 3 to choose. Node.js. Java. HTML5. Python. Docker. 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 being created? Note: There are 2 to choose. folder /app. file package.json. file manifest.yml. folder /approuter. You want to use the SAP Cloud Connector to connect an SAP S/4HANA system to the SAP BTP. Where does the SAP Cloud Connector need to be installed?. In the on-premise network of the SAP S/4HANA system. In a virtual machine independent from the on-premise network and the SAP BTP. In an SAP BTP subaccount. What are some restrictions of the free plan of SAP Business Application Studio?. A user can only have up to 2 dev spaces. A user can only have 1 dev space in the RUNNING state at a time. A user can only have up to 2 dev spaces in the RUNNING state at a time. The maximum size limit of a dev space is 10 GB. In SAP Fiori, how are drafts used? Note: There are 2 to choose. To enable responsiveness of apps. To prevent an object being edited by multiple users concurrently. To enable empty states of apps. To prevent data loss in case an app terminates unexpectedly. You have implemented a simple bookshop CAP application for the purpose of selling books. You want to implement an event handler in the bookshop-service, that calculates a discount of 10 % on the price of books written in English ("en"). In all other cases, you want to calculate a discount of 5 %. The price should be calculated after books are read from the service. Drag the code snippets from below into the correct parts of the event handler implementation. Drag the key and value items from below into the correct parts of the descriptor file. 0.9. after, READ’, forEach, ‘bookshop-service’, ‘book.language == ‘en’, ‘book.price = book.price * 0.95, book.price= book.price * 0.9. ‘bookshop-service’, after, ‘READ’, forEach, ‘book.language == ‘en’, ‘book.price = book.price * 0.95, book.price= book.price * 0.9. READ’, forEach, ‘bookshop-service’, after, ‘book.language == ‘en’, ‘book.price = book.price * 0.95, book.price= book.price * 0.9. |