Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Certfication Q's

Former Member

Hi Experts,

Can u please provide me the answers for the following Q's

20. Which of the following would be best for hiding further selection criteria until a function is chosen?

A: AT NEW SELECTION-SCREEN

B: SELECTION-SCREEN AT LINE-SELECTION

C: SUBMIT SELECTION-SCREEN

😧 CALL SELECTION-SCREEN

21. What must you code in the flow logic to prevent a module from being called unless a field contains a non-initial value (as determined by its data type)?

A: ON INPUT

B: CHAIN

C: FIELD

😧 ON REQUEST

22. The AT USER-COMMAND event is triggered by functions defined in the ____.

A: screen painter

B: ABAP report

C: menu painter status

😧 ABAP Dictionary

23. In regard to a function group, which of the following is NOT a true statement?

A: Combines similar function modules.

B: Shares global data with all its function modules.

C: Exists within the ABAP workbench as an include program.

😧 Shares subroutines with all its function modules.

24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.

A: EXCLUDING

B: IMMEDIATELY

C: WITHOUT

😧 HIDE

25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?

A: Fields in PBO are transported directly from PAI.

B: Fields with identical names are transported to the ABAP side.

C: Fields not defined in FIELD statements are transported first.

😧 Fields that are defined in FIELD statements are transported when their corresponding module is called.

26. The order in which an event appears in the ABAP code determines when the event is processed.

A: True

B: False

27. A field declared as type T has the following internal representation:

A: SSMMHH

B: HHMMSS

C: MMHHSS

😧 HHSSMM

28. Which of the following is NOT a component of the default standard ABAP report header?

A: Date and Time

B: List title

C: Page number

😧 Underline

29. Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report, what event is processed when the button is clicked?

A: AT USER-COMMAND.

B: AT PFn.

C: AT SELECTION-SCREEN.

😧 END-OF-SELECTION.

30. In regard to field selection, what option of the SELECT statement is required?

A: FOR ALL ENTRIES

B: WHERE

C: INTO

😧 MOVE-CORRESPONDING

31. The following program outputs what?

report zjgtest1

write: /1 'Ready_'.

PARAMETER: test.

INITIALIZATION.

write: /1 'Set_'.

START-OF-SELECTION.

write: /1 'GO!!'.

A: Set_ GO!! (each on its own line)

B: Set_ Ready_ GO!! (all on their own lines)

C: Ready_ GO!! (each on its own line)

😧 Ready_ Set_ GO!! (all on their own lines)

32. To declare a selection criterion that does not appear on the selection screen, use:

A: NO-DISPLAY

B: INVISIBLE

C: MODIF ID

😧 OBLIGATORY

33. An internal table that is nested within another internal table should not contain a header line.

A: True

B: False

1 ACCEPTED SOLUTION

meikandan_krishnan2
Participant
0 Kudos

20. Which of the following would be best for hiding further selection criteria until a function is chosen?

A: AT NEW SELECTION-SCREEN

B: SELECTION-SCREEN AT LINE-SELECTION

C: SUBMIT SELECTION-SCREEN

<b>D: CALL SELECTION-SCREEN</b>

21. What must you code in the flow logic to prevent a module from being called unless a field contains a non-initial value (as determined by its data type)?

A: ON INPUT

B: CHAIN

<b>C: FIELD</b>

😧 ON REQUEST

22. The AT USER-COMMAND event is triggered by functions defined in the ____.

<b>A: screen painter

B: ABAP report

C: menu painter status</b>

😧 ABAP Dictionary

23. In regard to a function group, which of the following is NOT a true statement?

A: Combines similar function modules.

B: Shares global data with all its function modules.

C: Exists within the ABAP workbench as an include program.

<b>D: Shares subroutines with all its function modules.</b>

24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.

<b>A: EXCLUDING</b>

B: IMMEDIATELY

C: WITHOUT

😧 HIDE

25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?

<b>A: Fields in PBO are transported directly from PAI.</b>

B: Fields with identical names are transported to the ABAP side.

C: Fields not defined in FIELD statements are transported first.

😧 Fields that are defined in FIELD statements are transported when their corresponding module is called.

26. The order in which an event appears in the ABAP code determines when the event is processed.

A: True

<b>B: False</b>

27. A field declared as type T has the following internal representation:

A: SSMMHH

<b>B: HHMMSS</b>

C: MMHHSS

😧 HHSSMM

28. Which of the following is NOT a component of the default standard ABAP report header?

<b>A: Date and Time</b>

B: List title

C: Page number

😧 Underline

29. Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report, what event is processed when the button is clicked?

<b>A: AT USER-COMMAND.</b>

B: AT PFn.

C: AT SELECTION-SCREEN.

😧 END-OF-SELECTION.

30. In regard to field selection, what option of the SELECT statement is required?

A: FOR ALL ENTRIES

B: WHERE

<b>C: INTO</b>

😧 MOVE-CORRESPONDING

31. The following program outputs what?

report zjgtest1

write: /1 'Ready_'.

PARAMETER: test.

INITIALIZATION.

write: /1 'Set_'.

START-OF-SELECTION.

write: /1 'GO!!'.

A: Set_ GO!! (each on its own line)

B: Set_ Ready_ GO!! (all on their own lines)

<b>C: Ready_ GO!! (each on its own line)</b>

😧 Ready_ Set_ GO!! (all on their own lines)

32. To declare a selection criterion that does not appear on the selection screen, use:

<b>A: NO-DISPLAY</b>

B: INVISIBLE

C: MODIF ID

😧 OBLIGATORY

33. An internal table that is nested within another internal table should not contain a header line.

<b>A: True</b>

B: False

5 REPLIES 5

Former Member
0 Kudos

Where are questions 1 to 19?

former_member189629
Active Contributor
0 Kudos

20. Which of the following would be best for hiding further selection criteria until a function is chosen?

A: AT NEW SELECTION-SCREEN

B: SELECTION-SCREEN AT LINE-SELECTION

C: SUBMIT SELECTION-SCREEN

😧 CALL SELECTION-SCREEN

21. What must you code in the flow logic to prevent a module from being called unless a field contains a non-initial value (as determined by its data type)?

A: ON INPUT

B: CHAIN

C: FIELD

😧 ON REQUEST

22. The AT USER-COMMAND event is triggered by functions defined in the ____.

<b>A: screen painter</b>

B: ABAP report

C: menu painter status

😧 ABAP Dictionary

23. In regard to a function group, which of the following is NOT a true statement?

A: Combines similar function modules.

B: Shares global data with all its function modules.

C: Exists within the ABAP workbench as an include program.

😧 Shares subroutines with all its function modules.

24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.

<b>A: EXCLUDING</b>

B: IMMEDIATELY

C: WITHOUT

😧 HIDE

25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?

A: Fields in PBO are transported directly from PAI.

B: Fields with identical names are transported to the ABAP side.

C: Fields not defined in FIELD statements are transported first.

😧 Fields that are defined in FIELD statements are transported when their corresponding module is called.

26. The order in which an event appears in the ABAP code determines when the event is processed.

A: True

<b>B: False</b>

27. A field declared as type T has the following internal representation:

A: SSMMHH

<b>B: HHMMSS</b>

C: MMHHSS

😧 HHSSMM

28. Which of the following is NOT a component of the default standard ABAP report header?

A: Date and Time

B: List title

C: Page number

😧 Underline

29. Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report, what event is processed when the button is clicked?

<b>A: AT USER-COMMAND.</b>

B: AT PFn.

C: AT SELECTION-SCREEN.

😧 END-OF-SELECTION.

30. In regard to field selection, what option of the SELECT statement is required?

A: FOR ALL ENTRIES

B: WHERE

<b>C: INTO</b>

😧 MOVE-CORRESPONDING

31. The following program outputs what?

report zjgtest1

write: /1 'Ready_'.

PARAMETER: test.

INITIALIZATION.

write: /1 'Set_'.

START-OF-SELECTION.

write: /1 'GO!!'.

A: Set_ GO!! (each on its own line)

B: Set_ Ready_ GO!! (all on their own lines)

C: Ready_ GO!! (each on its own line)

😧 Ready_ Set_ GO!! (all on their own lines)

32. To declare a selection criterion that does not appear on the selection screen, use:

<b>A: NO-DISPLAY</b>

B: INVISIBLE

C: MODIF ID

😧 OBLIGATORY

33. An internal table that is nested within another internal table should not contain a header line.

A: True

B: False

Message was edited by:

Karthik Potharaju

0 Kudos

Hi Karthik ,

Please check the answers for 20,23,25,28,31

Regards

Meikandan

Former Member
0 Kudos

Hi can anyone provide me with the answers for Q's 21 and 33

meikandan_krishnan2
Participant
0 Kudos

20. Which of the following would be best for hiding further selection criteria until a function is chosen?

A: AT NEW SELECTION-SCREEN

B: SELECTION-SCREEN AT LINE-SELECTION

C: SUBMIT SELECTION-SCREEN

<b>D: CALL SELECTION-SCREEN</b>

21. What must you code in the flow logic to prevent a module from being called unless a field contains a non-initial value (as determined by its data type)?

A: ON INPUT

B: CHAIN

<b>C: FIELD</b>

😧 ON REQUEST

22. The AT USER-COMMAND event is triggered by functions defined in the ____.

<b>A: screen painter

B: ABAP report

C: menu painter status</b>

😧 ABAP Dictionary

23. In regard to a function group, which of the following is NOT a true statement?

A: Combines similar function modules.

B: Shares global data with all its function modules.

C: Exists within the ABAP workbench as an include program.

<b>D: Shares subroutines with all its function modules.</b>

24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.

<b>A: EXCLUDING</b>

B: IMMEDIATELY

C: WITHOUT

😧 HIDE

25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?

<b>A: Fields in PBO are transported directly from PAI.</b>

B: Fields with identical names are transported to the ABAP side.

C: Fields not defined in FIELD statements are transported first.

😧 Fields that are defined in FIELD statements are transported when their corresponding module is called.

26. The order in which an event appears in the ABAP code determines when the event is processed.

A: True

<b>B: False</b>

27. A field declared as type T has the following internal representation:

A: SSMMHH

<b>B: HHMMSS</b>

C: MMHHSS

😧 HHSSMM

28. Which of the following is NOT a component of the default standard ABAP report header?

<b>A: Date and Time</b>

B: List title

C: Page number

😧 Underline

29. Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report, what event is processed when the button is clicked?

<b>A: AT USER-COMMAND.</b>

B: AT PFn.

C: AT SELECTION-SCREEN.

😧 END-OF-SELECTION.

30. In regard to field selection, what option of the SELECT statement is required?

A: FOR ALL ENTRIES

B: WHERE

<b>C: INTO</b>

😧 MOVE-CORRESPONDING

31. The following program outputs what?

report zjgtest1

write: /1 'Ready_'.

PARAMETER: test.

INITIALIZATION.

write: /1 'Set_'.

START-OF-SELECTION.

write: /1 'GO!!'.

A: Set_ GO!! (each on its own line)

B: Set_ Ready_ GO!! (all on their own lines)

<b>C: Ready_ GO!! (each on its own line)</b>

😧 Ready_ Set_ GO!! (all on their own lines)

32. To declare a selection criterion that does not appear on the selection screen, use:

<b>A: NO-DISPLAY</b>

B: INVISIBLE

C: MODIF ID

😧 OBLIGATORY

33. An internal table that is nested within another internal table should not contain a header line.

<b>A: True</b>

B: False