You are on page 1of 2

Q.1) The AT USER-COMMAND processing block is triggered by functions defined in the _________. A. B. C. D.

Screen Painter ABAP Report Menu Painter (Correct Answer) ABAP Dictionary

.2) Assuming an internal table contain 2000 entries, how many entries will it h ave after the following line of code is executed? DELETE itab FROM 1500 TO 1700. A. B. C. D. This is a Syntax Error 1800 1799 (Correct Answer) 1801

.3) The ____ type of ABAP Dictionary view consists of one or more transparent t ables and may be accessed by an ABAP program using Open SQL. A. B. C. D. Database View (Correct Answer) Projection View Help View Entity View

Q.4) Dialog programs have which naming convention (for customer development) ? A. B. C. D. ZPBOaaa SAPMZaaa (Correct Answer) SAPZZaaa SAPZMaaa

.5) A dictionary table is made available for use within an ABAP program via the TABLES statement. A. True (Correct Answer) B. False Q.6) Following are the Screen Elements for output : (Three Correct Answers) A. B. C. D. E. Text fields (Correct Answer) I/O fields Status Groups (Correct Answer) Group Boxes (Correct Answer) Radiobuttons

Q.7) Which of the following does not physically exist in the underlying databas e? Three Answers correct. A. View (Correct Answer) B. Internal Table (Correct Answer) C. Structure (Correct Answer) D. Transparent Table E. Pooled Table Explanation All except Transparent Table and Pooled Tables are stored in the repository as t he Definition in the Dictionary. None of View, Internal table, Structure exists physically in the Database.

Q.8) After adding rows to an internal table with COLLECT, you should avoid addi ng more rows with APPEND. A. True (Correct Answer) B. False Explanation COLLECT : accumulates the numeric fields for the similar left-justified characte r sets APPEND : add a record to internal table Once you add records to internal table with COLLECT statement, the table will co nsist unique entries for certain set of character fields. If you use APPEND on the same internal table, you will miss the order and the pu rpose of COLLECT statement. Pick the statement NOT in support of Screen Programming. A. B. C. D. Screen Screen Screen Screen is container for screen elements elements can refer to dictionary elements allows either to enter or display the data (Correct Answer) allow the programmer to build user-friendly dialogs

Q.10) Refer to the following Code. What is the value of sy-fdpos and sy-subrc a fter the search is executed? DATA: mystring TYPE c VALUE 'ARAMCO'. SEARCH mystring FOR 'X'. A. B. C. D. sy-fdpos = 0 and sy-subrc = 0 sy-fdpos = 0 and sy-subrc = 4 (Correct Answer) sy-fdpos = 4 and sy-subrc = 0 sy-fdpos

You might also like