Labour Day Special - Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: top65certs

SAP C_ABAPD_2309 Dumps

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

Question 1

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

Options:

A.

"zcxl" is a dictionary structure, and "paraml" and "param2" are this structure.

B.

"paraml11 and "param2" are predefined names.

C.

The code creates an exception object and raises an exception.

D.

"previous" expects the reference to a previous exception

Question 2

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 3

In RESTful Application Programming, which EML statement retrieves an object?

Options:

A.

Find entity

B.

Select entity

C.

Get entity

D.

Read entity

Question 4

The class zcl_demo_class is in a software component with the language version set to "Standard ABAP". The function module "ZF11 is in a software component with the language version set to "ABAP Cloud". Both the class and function module are customer created. Regarding line #6, which of the following is a valid statement?

Options:

A.

'ZF1' can be called whether it has been released or not for cloud development.

B.

'ZF1' can be called via a wrapper that itself has been released for cloud development.

C.

'ZF1' can be called via a wrapper that itself has not been released for cloud development.

D.

'ZF1' must be released for cloud development to be called.

Question 5

Which field is defined incorrectly?

Options:

A.

field1

B.

field3

C.

field4

D.

field2

Question 6

Which of the following actions cause an indirect change to a database table requiring a table conversion? Note: There are 2 correct answers to this question.

Options:

A.

Renaming a field in a structure that is included in the table definition

B.

Changing the field labels of a data element that is used in the table definition.

C.

Deleting a field from a structure that is included in the table definition.

D.

Shortening the length of a domain used in a data element that is used in the table definition.

Question 7

Which of the following string functions are predicate functions? Note: There are 2 correct answers to this question.

Options:

A.

find_any_not_of()

B.

contains_any_of()

C.

count_any_of()

D.

matchesQ

Question 8

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 9

Why would you use Access Controls with CDS Views? Note: There are 2 correct answers to this question.

Options:

A.

Only the data corresponding to the user's authorization is transferred from the database to the application layer.

B.

The system field sy-subrc is set, giving you the result of the authorization check

C.

You do not have to remember to implement AUTHORITY CHECK statements.

D.

All of the data from the data sources is loaded into your application automatically and filtered there according to the user's authorization.

Question 10

When does SAP recommend to use a sorted or a hashed table respectively? Note: There are 2 correct answers to this question.

Options:

A.

A hashed table, when you read a single record and specify the complete key.

B.

A hashed table, when you read a subset in a loop and specify a part of the key from the left without gaps.

C.

A sorted table, when you read a subset in a loop and specify a part of the key from the left ^ without gaps.

D.

A sorted table, when you read a single record and specify non key fields.

Question 11

You want to define the following CDS view entity with an input parameter:

Define view entity Z_CONVERT With parameters currency : ???

Which of the following can you use to replace "???? Note: There are 2 correct answers to this

question.

Options:

A.

built-in ABAP type

B.

A built-in ABAP Dictionary type

C.

A data element

D.

A component of an ABAP Dictionary structure

Question 12

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 13

To adhere to the most recent ABAP SQL syntax conventions from SAP, on which line must you insert the "INTO TABLE @gt flights" clause to complete the SQL statement?

Options:

A.

#15

B.

#4

C.

#6

D.

#8

Question 14

/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 15

Exhibit:

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 16

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

Options:

A.

##NEEDED is checked by the syntax checker.

B.

The pragma is not checked by the syntax checker.

C.

#EC_NEEDED is not checked by the syntax checker.

D.

The pseudo-comment is checked by the syntax checker

Question 17

Which of the following are incomplete ABAP types? Note: There are 2 correct answers to this question.

Options:

A.

String

B.

T

C.

C

D.

P

Question 18

with which predicate condition can you ensure that the CAST will work?

Options:

A.

IS SUPPLIED

B.

IS NOT INITIAL

C.

IS INSTANCE OF

D.

IS BOUND

Question 19

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

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

What would be the correct expression to change a given string value 'mr joe doe' into 'JOE' in an ABAP SQL field list?

Options:

A.

SELECT FROM TABLE dbtabl FIELDS

Of1,

upper(left( 'mr joe doe', 6)) AS f2_up_left, f3,

B.

SELECT FROM TABLE dbtabl FIELDS

Of1,

left(lower(substring( 'mr joe doe', 4, 3)), 3) AS f2_left_lo_sub, f3,

C.

SELECT FROM TABLE dbtabl FIELDS

Of1,

substring(upper('mr joe doe'), 4, 3) AS f2_sub_up, f3,...

D.

SELECT FROM TABLE dbtabl FIELDS

Of1,

substring(lower(upper( 'mr joe doe' ) ), 4, 3) AS f2_sub_lo_up, f3,

Question 21

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 22

In class ZCL_CLASS_A, you use the statement DATA var TYPE ***

What may stand in place of ***? Note: There are 2 correct answers to this question.

Options:

A.

The name of a type defined privately in class ZCL_CLASS_A

B.

The name of a data element from the ABAP Dictionary

C.

The name of a type defined privately in another class

D.

The name of a domain from the ABAP Dictionary

Question 23

Image:

In the following ABAP SQL code, what are valid case distinctions? Note: There are 2 correct answers to this question.

A)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Question 24

Exhibit:

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

Options:

A.

FOR defines a loop that runs over the content of source_itab

B.

source_itab is only visible within the loop.

C.

row is a predefined name and cannot be chosen arbitrarily.

D.

row is only visible within the loop.