|
ABAP Interview Questions -
Questions
|
|
Written by admin
|
|
Thursday, 28 August 2008 16:15 |
|
1. TO include database-specific SQL statements within an ABAP program, code them between: A: NATIVE SQL_ENDNATIVE. B: DB SQL_ENDDB. C: SELECT_ENDSELECT. D: EXEC SQL_ENDEXEC.
2. To measure how long a block of code runs, use the ABAP statement: A: GET TIME . B: SET TIME FIELD . C: GET RUN TIME FIELD . D: SET CURSOR FIELD .
3. When a secondary list is being processed, the data of the basic list is available by default. A: True B: False 4. Given: DATA: BEGIN OF itab OCCURS 10, qty type I, END OF itab.
DO 25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO.
LOOP AT itab WHERE qty > 10. WRITE: /1 itab-qty. ENDLOOP.
This will result in: A: Output of only those itab rows with a qty field less than 10 B: Output of the first 10 itab rows with a qty field greater than 10 C: A syntax error D: None of the above
5. After a DESCRIBE TABLE statement SY-TFILL will contain
A: The number of rows in the internal table. B: The current OCCURS value. C: Zero, if the table contains one or more rows. D: The length of the internal table row structure.
|
|
Last Updated ( Saturday, 30 August 2008 08:16 )
|