Weekend Sale Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70percent

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

Demo: 24 questions
Total 81 questions

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

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 3

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 4

In the assignment, data (gv_result) = 1/8. what will be the data type of gv_result?

Options:

A.

OTYPE I

B.

TYPE DEFLOAT 16

C.

TYPE P DECIMALS 3

D.

TYPE P DECIMALS 2

Question 5

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 6

What are some properties of database tables? Note: There are 2 correct answers to this question.

Options:

A.

They store information in two dimensions.

B.

They may have key fields.

C.

They can have any number of key fields.

D.

They can have relationships to other tables.

Question 7

Which internal table type allows unique and non-unique keys?

Options:

A.

Sorted

B.

Hashed

C.

Standard

Question 8

You have a superclass superl and a subclass subl of superl. Each class has an instance constructor and a static constructor. The first statement of your program creates an instance of subl. In which sequence will the constructors be executed?

Options:

Question 9

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 10

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 11

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 12

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 13

After you created a database table in the RESTful Application Programming model, what do you create next?

Options:

A.

A metadata extension

B.

A projection view

C.

A data model view

D.

A service definition

Question 14

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 15

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 16

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 17

Setting a field to read-only in which object would make the field read-only in all applications of the RESTful Application Programming model?

Options:

A.

Service definition

B.

Behaviour definition

C.

Projection view

D.

Metadata extension

Question 18

What RESTful Application Programming feature is used to ensure the uniqueness of a semantic key?

Options:

A.

Validation

B.

Action

C.

Determination

Question 19

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 20

In RESTful Application Programming, a business object contains which parts? Note: There are 2 correct answers to this question.

Options:

A.

CDS view

B.

Behavior definition

C.

Authentication rules

D.

Process definition

Question 21

Exhibit:

With Icl_super being superclass for Icl_subl and Icl_sub2 and with methods subl_methl and sub2_methl being subclass-specific methods of Id_subl or Icl_sub2, respectivel. What will happen when executing these casts? Note:

There are 2 correct answers to this question

Options:

A.

go subl = CAST # go super), will not work

B.

go_sub2 = CAST # go super), will work. go_subl CAST #go_super), will work

C.

go_sub2 = CAST #(go_super). will not work. ] go sub2->sub2 meth 1(...). will work

D.

go_subl->subl_meth !(...)• w'll work.

Question 22

What are some features of a unique secondary key? Note: There are 2 correct answers to this question.

Options:

A.

It is created when a table is filled.

B.

It is updated when the modified table is read again.

C.

It is created with the first read access of a table.

D.

It is updated when the table is modified.

Question 23

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 24

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.

Demo: 24 questions
Total 81 questions