SAP C_HCDEV_01 SAP Certified Development Associate – SAP HANA Cloud 1.0 Online Training
SAP C_HCDEV_01 Online Training
The questions for C_HCDEV_01 were last updated at Nov 15,2024.
- Exam Code: C_HCDEV_01
- Exam Name: SAP Certified Development Associate - SAP HANA Cloud 1.0
- Certification Provider: SAP
- Latest update: Nov 15,2024
Which tasks does the User Account and Authentication (XSUAA) service accomplish? Note: There are 3 correct answers to this question.
- A . It dispatches requests to microservices.
- B . It identifies the user by e-mail or user ID.
- C . It decides if a user is allowed to perform an activity.
- D . It assigns the principals to a user session.
- E . It stores the real users’ identities.
In the Run Configurations view, you can see the available dependencies as defined in the package.json file.
To which of the following can you bind or unbind these dependencies? Note: There are 3 correct answers to this question.
- A . User-provided service
- B . SAP HANA Cloud database
- C . Local database
- D . External OData service
- E . SAP Job Scheduling service
Which Node.js module do you use to run an SQL statement against the SAP HANA database?
- A . @sap/xssec
- B . @sap/xsenv
- C . @sap/hdbext
- D . @sap/hdi
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?
- A . 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}`)})})
- B . const cds = require(‘@sap/cds’)module.exports = cds.service.impl(function () { const {Supplier} = this.entities() this.after(‘each’,Supplier, row =>{ output.log(`Read Supplier: ${row.ID}`)})})
- C . const cds = require(‘@sap/cds’)module.exports = cds.service.impl(function () { const {Supplier} = this.entities()this.on(‘each’,Supplier, row =>{ output.log(`Read Supplier: ${row.ID}`)})})
- D . const cds = require(‘@sap/cds’)module.exports = cds.service.impl(function () { const {Supplier} = this.entities() this.on(‘each’,Supplier, row =>{ console.log(`Read Supplier: ${row.ID}`) })})
You are using Core Data Services (CDS) to define the persistence layer in SAP Business Application Studio.
Which folder of the project do you use to create the design time files?
- A . srv
- B . db
- C . src
- D . web
What can you use for Core Data Services (CDS)-based security in the SAP Cloud Application Programming Model? Note: There are 2 correct answers to this question.
- A . Scopes
- B . Privileges
- C . Authorizations
- D . Roles
How can domain experts and developers collaborate to focus on domain problems using the SAP Cloud Application Programming Model? Note: There are 2 correct answers to this question.
- A . By maximizing boilerplate code to real custom logic
- B . By fueling generic runtimes to serve recurring tasks automatically
- C . By declaratively capturing domain knowledge in CDS models
- D . By integrating the data with other SAP systems
You are using Git from switch view in SAP Business Application Studio and have staged a file after modifications.
What is the status of the file?
- A . Deleted(D)
- B . Modified(M)
- C . Copied(C)
- D . New(A)
What is the sequence of steps to debug a procedure?
- A . Select the procedure to be debugged from the Database Explorer.Open the procedure for debugging and set the breakpoint.Open the debug panel and link the debugger to a session.Execute the procedure.
- B . Open the debug panel and link the debugger to a session.Select the procedure to be debugged from the Database Explorer.Open the procedure for debugging and set the breakpoint.Execute the procedure.
- C . Open the procedure for debugging and set the breakpoint.Open the debug panel and link the debugger to a session. Select the procedure to be debugged from the Database Explorer.Execute the procedure.
- D . Select the procedure to be debugged from the Database Explorer.Open the debug panel and link the debugger to a session.Open the procedure for debugging and set the breakpoint.Execute the procedure.
Which sequence of steps do you follow when working with files locally in Git in SAP Business Application Studio?
- A . (a)Check out (b)Create, modify, save(c)Stage(d)Commit(e)Stage
- B . (a)Create, modify, save(b)Check out(c)Commit(d)Stage
- C . (a)Create, modify, save(b)Commit (c)Check out
- D . (a)Create, modify, save(b)Stage(c)Check out (e)Commit