Winter Special Flat 65% Limited Time Discount offer - Ends in 0d 00h 00m 00s - Coupon code: netdisc

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

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

Testing Engine

  • Product Type: Testing Engine
$42  $119.99

PDF Study Guide

  • Product Type: PDF Study Guide
$36.75  $104.99
Question 1

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 2

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 3

What RESTful Application Programming object contains only the fields required for a particular app?

Options:

A.

Database view

B.

Metadata extension

C.

Projection View

D.

Data model view

Question 4

Which function call returns 0?

Options:

A.

Count_any_of ( val - ‘ABAP ABAP abap' sub "AB" )

B.

Count (val - 'ABAP ABAP abap' sub - 'AB' )

C.

find_any_of (val = "ABAP ABAP abap' sub = "AB")

D.

find_any_not_of( val 'ABAP ABAP abap’ sub = 'AB')

Question 5

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

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 7

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 8

Which of the following are parts of the definition of a new database table? Note: There are 2 correct answers to this question.

Options:

A.

Partitioning attributes

B.

Extension

C.

Semantic table attributes

D.

Field list

Question 9

In ABAP SQL, which of the following can be assigned an alias? Note: There are 2 correct answers to this question.

Options:

A.

order criterion (from order by clause)

B.

field (from field list)

C.

database table

D.

group criterion (from group by clause)

Question 10

Which ABAP SQL clause allows the use of inline declarations?

Options:

A.

FROM

B.

INTO CORRESPONDING FIELDS OF

C.

INTO

D.

FIELDS

Question 11

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 12

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 13

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 14

Given the following Core Data Service View Entity Data Definition:

1 @AccessControl.authorizationCheck: #NOT_REQUIRED

2 DEFINE VIEW ENTITY demo_flight_info_join

3 AS SELECT

4 FROM scarr AS a

5 LEFT OUTER JOIN scounter AS c

6 LEFT OUTER JOIN sairport AS p

7 ON p.id = c.airport

8 ON a.carrid = c.carrid

9 {

10 a.carridAS carrier_id,

11 p.idAS airport_id,

12 c.countnumAS counter_number

13 }

In what order will the join statements be executed?

Options:

A.

scarr will be joined with scounter first and the result will be joined with sairport.

B.

sairport will be joined to scounter first and the result will be joined with scarr.

C.

scarr will be joined with sairport first and the result will be joined with scounter.

D.

scounter will be joined to sairport first and the result will be joined with scarr.

Question 15

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 16

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 17

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 18

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 19

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 20

You have two internal tables itab1 and itab2.What is true for using the expression itab1 = corresponding #( itab2 )? Note: There are 2 correct answers to this question.

Options:

A.

Fields with the same name but with different types may be copied from itab2 to itab1.

B.

itab1 and itab2 must have at least one field name in common.

C.

Fields with the same name and the same type will be copied from itab2 to itab1.

D.

itab1 and itab2 must have the same data type.

Question 21

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 22

What are advantages of using a field symbol for internal table row access? Note: There are answers to this question.

Options:

A.

The field symbol can be reused for other programs.

B.

A MODIFY statement to write changed contents back to the table is not required.

C.

The row content is copied to the field symbol instead to a work area

D.

Using a field symbol is faster than using a work area.

Question 23

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

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 24

Which restrictions exist for ABAP SQL arithmetic expressions? Note: There are 2 correct answers to this question.

Options:

A.

Floating point types and integer types can NOT be used in the same expression.

B.

The operator/is allowed only in floating point expressions.

C.

Decimal types and integer types can NOT be used in the same expression.

D.

The operator is allowed only in floating point expressions.

Question 25

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.