Which UI5 features can support this requirement?

You are asked to develop a UI application that can be used by a global audience.

Which UI5 features can support this requirement? Note: There are 3 correct answers to this question.
A . Role-based app experience
B. Easy adoption for different devices
C. Translation and internationalization
D. Extensibility concepts at code and application level
E. High contrast theme to aid visually impaired users

Answer: C,D,E

Which tasks does the User Account and Authentication (XSUAA) service accomplish? Note: There are 3 correct answers to this question.

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.

Answer: A,B,C

What is the correct syntax to implement this?

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

Answer: C