Multiple choice technology programming languages

The ABAP statement below indicates that the program should continue with the next line of code if the internal table itab:CHECK NOT itab[] IS INITIAL.

  1. Contains no rows

  2. Contains at least one row

  3. Has a header line

  4. Has an empty header line

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

The expression itab[] refers to the body of the internal table. Checking NOT itab[] IS INITIAL evaluates to true when the internal table contains at least one row, allowing the program to continue with the next line of code instead of exiting the current processing block.