SAP C_ABAPD_2309 Übungsprüfungen
Zuletzt aktualisiert am 26.04.2025- Prüfungscode: C_ABAPD_2309
- Prüfungsname: SAP Certified Associate - Back-End Developer - ABAP Cloud
- Zertifizierungsanbieter: SAP
- Zuletzt aktualisiert am: 26.04.2025
What are some properties of database tables? Note: There are 2 correct answers to this question.
- 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.
What are some properties of database tables? Note: There are 2 correct answers to this question.
- 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.
Class super has subclass sub.
Which rules are valid for the sub constructor? Note: There are 2 correct answers to this question.
- A . The method signature can be changed.
- B . Import parameters can only be evaluated after calling the constructor of super.
- C . The constructor of super must be called before using any components of your own instance.
- D . Events of your own instance cannot be raised before the registration of a handler in super.
Which of the following ABAP SQL statements are valid? Note: There are 2 correct answers to this question.
- 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).
What is the sequence priority when evaluating a logical expression?
A) NOT 1
B) OR 3
C) AND 2
- A . ABC
- B . CAB
- C . ACB
- D . BAC
What are the effects of this annotation? Note: There are 2 correct answers to this question.
- 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.
What are the effects of this annotation? Note: There are 2 correct answers to this question.
- 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.
Which of the following results in faster access to internal tables? Note: There are 3 correct answers to this question.
- 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.
In RESTful Application Programming, a business object contains which parts? Note: There are 2 correct answers to this question.
- A . CDS view
- B . Behavior definition
- C . Authentication rules
- D . Process definition
Which statement can you use to change the contents of a row of data in an internal table?
- A . Append table
- B . Modify table
- C . Insert table
- D . Update table