Multiple choice technology programming languages

LOOP AT ITAB INTO LINE. ENDLOOP.

  1. a. LINE will hold the first record.

  2. b. Error

  3. c. LINE will hold the last record.

  4. d. LINE is empty.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In the LOOP AT ITAB INTO LINE construct, the work area LINE receives each row of the internal table during each iteration. After the loop completes, LINE contains the last record that was processed. This is standard ABAP behavior - the work area holds whatever value was last assigned to it. Option A is incorrect because LINE only temporarily holds one record at a time during iteration. Option B is incorrect because no error occurs. Option D is incorrect because LINE contains the last processed record, not nothing.