Multiple choice technology programming languages To read a single line of an internal table, use the following: LOOP AT itab. _ ENDLOOP. SELECT SINGLE * FROM itab. READ itab. 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.