Labour Day Special Limited Time Flat 70% Discount offer - Ends in 0d 00h 00m 00s - Coupon code: 70spcl

SAP C_ABAPD_2309 SAP Certified Associate - Back-End Developer - ABAP Cloud Exam Practice Test

Page: 1 / 8
Total 81 questions

SAP Certified Associate - Back-End Developer - ABAP Cloud Questions and Answers

Question 1

Question # 1

What are valid statements? Note: There are 3 correct answers to this question

Options:

A.

In class CL1, the interface method is named if-ml.

B.

Class CL2 uses the interface.

C.

Class CL1 uses the interface.

D.

In class CL2, the interface method is named ifl-ml.

E.

Class CL1 implements the interface.

Question 2

What is the sequence priority when evaluating a logical expression?

Options:

A.

NOT 1

B.

OR 3

C.

AND 2

D.

A B C

E.

CAB

F.

A C B

G.

B A C

Question 3

In ABAP SQL, which of the following retrieves the association field_Airline-Name of a CDS view?

Options:

A.

\_Airline-Name

B.

/_Airline Name

C.

@_Airline-Name

D.

"_Airline Name

Question 4

Which ABAP SQL clause allows the use of inline declarations?

Options:

A.

FROM

B.

INTO CORRESPONDING FIELDS OF

C.

INTO

D.

FIELDS

Question 5

For the assignment, gv_target = gv_source.

which of the following data declarations will always work without truncation or rounding? Note: There

are 2 correct answers to this question.

Options:

A.

DATA gv_source TYPE string, to DATA gv_target TYPE c.

B.

DATA gv_source TYPE c. to DATA gv_target TYPE string.

C.

DATA gv_source TYPE d. to DATA gv_target TYPE string.

D.

DATA gv_source TYPE p LENGTH 8 DECIMALS 3. to DATA gv_target TYPE p LENGTH 16 DECIMALS 2.

Question 6

Question # 6

Which of the following ON conditions must you insert in place of "???"?

Options:

A.

ON Z_Sourcel.camer_id = 7_Source2 carrier_id

B.

ON Sprojection Camer=Source2 carrier_id

C.

ON Sprojection. Carrier Source2.carrier

D.

ON Sprojection.carrier_id=Z_Source2.carrier_id

Question 7

In which products must you use the ABAP Cloud Development Model? Note: There are 2 correct answers to this question.

Options:

A.

SAP S/4HANA Cloud, private edition

B.

SAP BTP, ABAP environment

C.

SAP S/4HANA on premise

D.

SAP S/4HANA Cloud, public edition

Question 8

Which of the following are parts of answers to this question.

Options:

A.

Partitioning attributes

B.

Extension

C.

Field list

D.

Semantic table attributes

Question 9

Which of the following results in faster access to internal tables? Note: There are 3 correct answers to this question.

Options:

A.

In a sorted internal table, specifying the primary key partially from the left without gaps.

B.

In a sorted internal table, specifying the primary key completely.

C.

In a standard internal table, specifying the primary key partially from the left without gaps.

D.

In a hashed internal table, specifying the primary key partially from the left without gaps.

E.

In a hashed internal table, specifying the primary key completely.

Question 10

Which of the following are features of Core Data Services? Note: There are 3 correct answers to this question.

Options:

A.

Inheritance

B.

Associations

C.

Annotations

D.

Delegation

E.

Structured Query Language (SQL)

Question 11

Question # 11

When accessing the subclass instance through go_super, what can you do? Note: There are 2 correct answers to this question.

Options:

A.

Access the inherited private components.

B.

Access the inherited public components.

C.

Call a subclass specific public method

D.

Call inherited public redefined methods.

Question 12

In a subclass subl you want to redefine a component of a superclass superl. How do you achieve this? Note: There are 2 correct answers to this question.

Options:

A.

You add the clause REDEFINITION to the component in subl.

B.

You implement the redefined component for a second time in superl.

C.

You implement the redefined component in subl.

D.

You add the clause REDEFINITION to the component in superl.

Question 13

Which of the following are ABAP Cloud Development Model rules?

Note: There are 2 correct answers to this question.

Options:

A.

Use public SAP APIs and SAP extension points.

B.

Build ABAP RESTful application programming model-based services.

C.

Reverse modifications when a suitable public SAP API becomes available.

D.

Build ABAP reports with either ABAP List Viewer (ALV) or SAP Fiori.

Question 14

Given the following code in an SAP S/4HANA Cloud private edition tenant:

Question # 14

The class zcl_demo_class is in a software component with the language version set to "ABAP Cloud". The function module ZF1' is in a different software component with the language version set to "Standard ABAP". Both the class and function module are customer created.

Regarding line #6, which of the following are valid statements? Note: There are 2 correct answers to this question.

Options:

A.

ZF1' can be called only if it is released for cloud development.

B.

'ZF1' can be called if a wrapper is created for it and the wrapper itself is released for cloud development.

C.

"ZF1" can be called whether it is released or not for cloud development

D.

ZF1" can be called if a wrapper is created for it but the wrapper itself is not released for cloud development.

Question 15

In what order are objects created to generate a RESTful Application Programming application?

Options:

A.

Database table 1

B.

Service binding Projection view 4

C.

Service definition 3

D.

Data model view 2

E.

D A B C

F.

B D C A

G.

A D C B

Question 16

Which of the following ABAP SQL statements are valid? Note: There are 2 correct answers to this question.

Options:

A.

SELECT FROM /dmo/connection FIELDS carrid O airpfrom,

MAX(distance) AS dist_max, MIN( distance) AS dist_min GROUP BY carrid, airpfrom INTO TABLE @DATA(It_hits)

B.

SELECT FROM /dmo/connection FIELDS \/ O carrid, airpfrom,

MAX( distance) AS dist_max, MIN(distance) AS dist_min INTO TABLE @DATA(It_hits)

C.

SELECT FROM /dmo/connection FIELDS V D MAX(distance) AS dist_max

MIN(distance) AS dist_min INTO TABLE @DATA(It_hits).

D.

SELECT FROM /dmo/connection FIELDS r—i carrid, airpfrom u GROUP BY carrid, connid

INTO TABLE @DATA(It_hits).

Question 17

/DMO/I_Connection is a CDS view.

What variable type is connection full based on the following code? DATA connection full TYPE

/DMD/I_Connection.

Options:

A.

Simple variable

B.

Structure

C.

Internal Table

Question 18

As a consultant you are posed the following question from a client who is using SAP S/4HANA Cloud,

public edition and also SAP BTP, ABAP environment.

"We are currently using an SAP Fiori app based on SAP Fiori elements that analyzes open orders. We

have determined that it should be extended via a new button on the UI which will perform an on-

the-fly calculation and display the result in a quick popup for the enduser. We have been informed by

SAP that all underlying stack layers for the SAP Fiori app have been extensibility enabled."

Based on this which of the following extension types would you recommend to the customer to add

the new button?

Options:

A.

RAP BO Behavior Extension

B.

SAP HANA database table extension

C.

RAP BO Node Extension

D.

Business Service Extension

Question 19

What are the effects of this annotation? Note: There are 2 correct answers to this question.

Question # 19

Options:

A.

The value of sy-langu will be passed to the CDS view automatically both when you use the -1 CDS view in ABAP and in another CDS view entity (view on view).

B.

You can still override the default value with a value of your own.

C.

The value of sy-langu will be passed to the CDS view automatically when you use the CDS view in ABAP but not when you use it in another view entity

D.

It is no longer possible to pass your own value to the parameter.

Question 20

Question # 20

Which of the following types are permitted to be used for on line #4? Note: There are 2 correct answers to this question.

Options:

A.

A database table from the ABAP Dictionary

B.

A CDS DDIC-based view

C.

An external view from the ABAP Dictionary

D.

A database view from the ABAP Dictionary

Question 21

Which of the following are valid sort operations for internal tables? Note: There are 3 correct answers to this question.

Options:

A.

Sort a standard table using

SORT itab ASCENDING.

Sort a sorted table using

B.

SORT itab BY fieldl ASCENDING field2 DESCENDING.

Sort a standard table using

C.

SORT itab BY field1 field2.

Sort a standard table using

D.

SORT itab.

Sort a sorted table using

E.

SORT itab DESCENDING.

Question 22

Exhibit:

Question # 22

What are valid statements? Note: There are 3 correct answers to this question.

Options:

A.

go_if 1 may call method ml with go_ift->ml().

B.

Instead of go ell = NEW #(...) you could use go ifl = NEW cll(. ... ).

C.

go_cll may call method ml with go_dl->ifl-ml().

D.

Instead of go_cll = NEW #() you could use go_iff - NEW #(...).

E.

go_ifl may call method m2 with go if->m2(...).

Question 23

When processing a loop with the statement DO... ENDDO, what system variable contains the implicit loop counter?

Options:

A.

sy-linno

B.

sy-labix

C.

sy-subrc

D.

sy-index

Question 24

What is the purpose of a foreign key relationship between two tables in the ABAP Dictionary?

Options:

A.

To document the relationship between the two tables

B.

To ensure the integrity of data in the corresponding database tables

C.

To create a corresponding foreign key relationship in the database

Page: 1 / 8
Total 81 questions