SAP C_ABAPD_2309 - SAP Certified Associate - Back-End Developer - ABAP Cloud Exam
Page: 2 / 16
Total 79 questions
Question #6 (Topic: Topic 1, Core АВАР programming
)
Which of the following are incomplete ABAP types? (Choose two.)
A. T
B. String
C. C
D. P
Answer: AD
Question #7 (Topic: Topic 1, Core АВАР programming
)
Which function call returns 0?
A. find_any_of( val = ‘ABAP ABAP abap’ sub = ‘AB’ )
B. count( val = ‘ABAP ABAP abap’ sub = ‘AB’ )
C. count_any_of( val = ‘ABAP ABAP abap’ sub = ‘AB’ )
D. find_any_not_of( val = ‘ABAP ABAP abap’ sub = ‘AB’ )
Answer: D
Question #8 (Topic: Topic 1, Core АВАР programming
)
What are some features of a unique secondary key? (Choose two.)
A. It is updated when the table is modified.
B. It is created with the first read access of a table.
C. It is updated when the modified table is read again.
D. It is created when a table is filled.
Answer: AD
Question #9 (Topic: Topic 1, Core АВАР programming
)
Which of the following results in faster access to internal tables? (Choose three.)
A. In a hashed internal table, specifying the primary key completely.
B. In a standard internal table, specifying the primary key partially from the left without gaps.
C. In a sorted internal table, specifying the primary key completely.
D. In a sorted internal table, specifying the primary key partially from the left without gaps.
E. In a hashed internal table, specifying the primary key partially from the left without gaps.
Answer: ACD
Question #10 (Topic: Topic 1, Core АВАР programming
)
For the assignment,
gv_target = gv_source.
Which of the following data declarations will always work without truncation or rounding? (Choose two.)
gv_target = gv_source.
Which of the following data declarations will always work without truncation or rounding? (Choose two.)
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 p LENGTH 8 DECIMALS 3.
to
DATA gv_target TYPE p LENGTH 16 DECIMALS 2. D. DATA gv_source TYPE d.
to
DATA gv_target 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 p LENGTH 8 DECIMALS 3.
to
DATA gv_target TYPE p LENGTH 16 DECIMALS 2. D. DATA gv_source TYPE d.
to
DATA gv_target TYPE string.
Answer: BD