Which keyword adds rows to an internal table while accumulating numeric values?

  1. INSERT

  2. APPEND

  3. COLLECT

  4. GROUP


Correct Option: C

AI Explanation

To answer this question, you need to understand how internal tables work in the context of accumulating numeric values.

Option A) INSERT - This option is incorrect because the INSERT keyword is used to insert a new entry into an internal table, but it does not accumulate numeric values.

Option B) APPEND - This option is incorrect because the APPEND keyword is used to add a new entry to the end of an internal table, but it does not accumulate numeric values.

Option C) COLLECT - This option is correct because the COLLECT keyword is used to add rows to an internal table while accumulating numeric values. It performs a summation of numeric fields in the internal table based on specified key fields.

Option D) GROUP - This option is incorrect because the GROUP keyword is not used to add rows to an internal table or accumulate numeric values. It is used to group data in an internal table based on specified key fields.

The correct answer is C) COLLECT. This option is correct because it accurately describes the keyword used to add rows to an internal table while accumulating numeric values.

Find more quizzes: