New Year Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

SAP Certified Development Associate C_HCDEV_01 Updated Exam

Page: 3 / 3
Total 80 questions

SAP Certified Development Associate - SAP HANA Cloud 1.0 Questions and Answers

Question 9

What is the SAP Business Application Studio user interface made up of?

Options:

A.

Tiles

B.

Frames

C.

Windows

D.

Views

Question 10

A new release of SAP HANA Cloud, SAP HANA database is available as of today.If you do NOT perform the upgrade manually, how much time do you have before your database will be automatically upgraded to the next release?

Options:

A.

3 months

B.

7 months

C.

2 weeks

D.

1 year

Question 11

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?

Options:

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}`) })})

Question 12

You have to create an association between Books and Authors entities using Core Data Services (CDS).Which syntax is applicable?

Options:

A.

entity Books { key ID : Integer; title : String; author : Association to Authors;} Authors { key ID : Integer;name : String;}

B.

entity Books {key ID : Integer;title : String; author : Association to Authors;entity Authors {key ID : Integer; name : String;}}

C.

entity Books {key ID : Integer; title : String; author : Association to entity Authors { key ID : Integer;name : String;} ;}

D.

entity Books { key ID : Integer; title : String; author : Association to Authors;}entity Authors { key ID : Integer;name : String;}

Page: 3 / 3
Total 80 questions