Multiple choice technology programming languages

To read a single line of an internal table, use the following:

  1. LOOP AT itab. _ ENDLOOP.

  2. SELECT SINGLE * FROM itab.

  3. READ itab.

  4. READ TABLE itab.

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

READ TABLE is the ABAP command to read a single line from an internal table. Options A and B use incorrect syntax (LOOP is for multiple lines, SELECT is for database tables). Option C is incomplete syntax.