
The Best Practice Test Preparation for the C-P2W-ABN Certification Exam
C-P2W-ABN Exam Dumps, Practice Test Questions BUNDLE PACK
NEW QUESTION # 16
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORTING parameter named PAR1.
What type of parameter is PAR1 in the post-method?
- A. IMPORTING
- B. RETURNING
- C. CHANGING
- D. EXPORTING
Answer: C
NEW QUESTION # 17
What parameters can you set when you run the Code Inspector?
Note: There are 3 correct answers to this question.
- A. Check variant name
- B. Background job name
- C. Inspection name
- D. Work process name
- E. Object set name
Answer: A,C,E
NEW QUESTION # 18
The code of an executable program does NOT contain any event keywords.
What event block does the code belong to?
- A. INITIALIZATION
- B. AT SELECTION-SCREEN
- C. LOAD-OF-PROGRAM
- D. START-OF-SELECTION
Answer: D
NEW QUESTION # 19
Which data types are incomplete ABAP standard data types? Note: There are 3 correct answers to this question.
- A. I
- B. D
- C. C
- D. P
- E. N
Answer: B,D,E
NEW QUESTION # 20
You have the following class definition: CLASS Icl_airplane DEFINITION.
PUBLIC SECTION. METHODS:
set_passengers.
PROTECTED SECTION.
CONSTANTS: c_pos type i value 100. METHODS: get_passengers.
PRIVATE SECTION.
DATA: mv_passengers TYPE i. METHODS: set_attributes.
ENDCLASS.
Which components can be addressed directly from a subclass of class Icl_airplane?
Note: There are 3 correct answers to this question.
- A. SET_ATTRIBUTES
- B. C_POS
- C. MV_PASSENGERS
- D. GET_PASSENGERS
- E. SET_PASSENGERS
Answer: A,D,E
NEW QUESTION # 21
You want to loop over an internal table without copying each table row to a work area.
How can you achieve this using a field symbol?
- A. LOOP...INTO <field_symbol>...ENDLOOP.
- B. LOOP... ASSIGNING <field_symbol>...ENDLOOP.
- C. LOOP... INTO <field_symbol> TRANSPORTING... ENDLOOP.
- D. LOOP... REFERENCE INTO <field_symbol>... ENDLOOP.
Answer: B
NEW QUESTION # 22
How do you create lock objects and lock modules for use in ABAP programs that access the database?
- A. Use the Function Builder to create the lock modules.
- B. Use the Function Builder to create the lock modules and the lock objects.
- C. Use the ABAP Dictionary to create the lock objects.
- D. Use the ABAP Dictionary to create the lock objects. The lock modules are created automatically.
- E. Use the Function Builder to create the lock modules. The lock objects are created automatically.
Answer: C,D
NEW QUESTION # 23
What do enhancement spots manage?
Note: There are 3 correct answers to this question.
- A. Explicit enhancement sections
- B. Classic BAdls
- C. Implicit enhancement points
- D. Explicit enhancement points
- E. New BAdls
Answer: A,C,D
NEW QUESTION # 24
Which of the following rules must you follow when you create a static constructor?
Note: There are 2 correct answers to this question.
- A. You can define class-based or classic exceptions.
- B. You must define the method as public.
- C. You CANNOT define parameters.
- D. You must name the method CONSTRUCTOR.
Answer: A,C
NEW QUESTION # 25
You run an executable program that contains the following code:
DATA:
gv_var1 TYPE n LENGTH 3,
gv_var2 TYPE n LENGTH 3 VALUE '456'.
START-OF-SELECTION.
CLEAR gv_var2.
gv_var2 = gv_var1. gv_var1 = '123'.
At what point does the system reserve memory for data object gv_var1?
- A. At the beginning of the START-OF-SELECTION event block
- B. As soon as the program is loaded into the internal session
- C. When value '123' is assigned to the data object
- D. When the assignment to gv_var2 is executed
Answer: B
NEW QUESTION # 26
After which statement will the runtime system initialize the ABAP memory?
- A. LEAVE TO TRANSACTION
- B. SUBMIT...AND RETURN
- C. SUBMIT
- D. CALL TRANSACTION
Answer: A
NEW QUESTION # 27
What can be implemented using an implicit enhancement option?
Note: There are 3 correct answers to this question.
- A. Overwrite methods for SAP function modules
- B. Additional exceptions in SAP function modules
- C. Overwrite methods for global SAP classes
- D. Additional attributes for global SAP classes
- E. Additional parameters in SAP function modules
Answer: B,C,D
NEW QUESTION # 28
Which of the following standard hook methods exist in all Web Dynpro controllers?
Note: There are 2 correct answers to this question.
- A. wddoinit
- B. wddoexit
- C. wddoafteraction
- D. wddobeforenavigation
Answer: A,B
NEW QUESTION # 29
You created a class by inheriting from a superclass. The superclass contains a public instance method do_something.
You want to redefine method do something.
What must you do?
- A. Leave the signature of the method unchanged.
- B. Call the implementation in the superclass.
- C. Declare the method FINAL.
- D. Change the visibility of the method to PROTECTED.
Answer: B
NEW QUESTION # 30
What do you need to consider when creating a secondary index on a table?
Note: There are 2 correct answers to this question.
- A. The most frequently selected fields should be at the first positions in the index.
- B. The index must always be unique.
- C. The table will be updated more quickly if you create more indexes.
- D. The index can be created for specific database systems only.
Answer: A,C
NEW QUESTION # 31
What are the reasons to use modularization?
Note: There are 3 correct answers to this question.
- A. Promotes reusability
- B. Improved transparency
- C. Easier maintenance
- D. Improved performance
- E. Portability across DBMS
Answer: A,B,C
NEW QUESTION # 32
You write the following ABAP statement:
SELECT SINGLE carrid, connid, cityfrom, cityto
FROM spfli
INTO @gs_spfli
WHERE carrid = @pa_car
AND connid = @pa_con.
How are the selected fields placed into target structure gs_spfli?
- A. Into fields with the same type
- B. Into fields with the same name
- C. From left to right
- D. Into fields with the same name and same type
Answer: D
NEW QUESTION # 33
Which of the following actions can you perform in both the ABAP Editor and in the ABAP Debugger?
- A. Create a breakpoint for a specific message.
- B. Create a breakpoint for a specific statement.
- C. Create a breakpoint for a specific line.
- D. Create a watchpoint for a specific variable.
Answer: B,D
NEW QUESTION # 34
What properties will be set when you define a table type in the ABAP Dictionary?
Note: There are 3 correct answers to this question.
- A. Change document
- B. Access mode
- C. GET/SET Parameter
- D. Primary key
- E. Line type
Answer: B,D,E
NEW QUESTION # 35
What can be part of the signature of an instance constructor?
Note: There are 2 correct answers to this question.
- A. Exporting parameters
- B. Importing parameters
- C. Exceptions
- D. Changing parameters
Answer: B,D
NEW QUESTION # 36
A screen has the following PAI flow logic:
PROCESS AFTER INPUT.
FIELD A MODULE check_A.
FIELD B MODULE check_B. CHAIN.
FIELD: C,D.
MODULE check_CD.
ENDCHAIN.
CHAIN.
FIELD: C,B.
MODULE check_CB. ENDCHAIN.
What happens if the application sends a type E message during the check_CB module processing?
- A. The screen is displayed again and the PBO flow logic is processed. Only fields B and C are ready for input.
- B. The screen is displayed again without processing the PBO flow logic. All fields are ready for input.
- C. The screen is displayed again without processing the PBO flow logic. Only fields B and C are ready for input.
- D. The screen is NOT displayed again. Processing terminates and the user must restart the ABAP program.
Answer: C
NEW QUESTION # 37
Which are the functions of the ABAP dispatcher? Note: There are 3 correct answers to this question.
- A. It performs a roll-in and roll-out of user context.
- B. It integrates the presentation layer.
- C. It saves the processing requests in request queues.
- D. It requests the data from the database or the buffers.
- E. It distributes the requests among the work processes.
Answer: A,C,E
NEW QUESTION # 38
Which of the following settings can you define for both structures and transparent tables in the ABAP Dictionary?
Note: There are 2 correct answers to this question.
- A. Foreign key relationships
- B. Storage type
- C. Size category
- D. Enhancement category
Answer: C,D
NEW QUESTION # 39
......
Prepare for the Actual SAP Certified Development Associate C-P2W-ABN Exam Practice Materials Collection: https://www.free4torrent.com/C-P2W-ABN-braindumps-torrent.html
SAP Certified Development Associate Certification C-P2W-ABN Sample Questions Reliable: https://drive.google.com/open?id=1b0DOpoI7_XSxawhVOaG16NyJOtDT89XP