Multiple choice technology programming languages

How to clear a internal table and its occupied memory

  1. Clear itab

  2. Free itab

  3. Refresh itab

  4. All of the above

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

FREE itab both clears the content AND releases the memory occupied by the internal table. CLEAR only resets the content without releasing memory, and REFRESH typically works like CLEAR. For complete memory deallocation, FREE is the correct command.