Multiple choice technology programming languages

What is output of the this code? REPORT ZTEST. field-symbols: type c. = '10'. write:/ .

  1. 10

  2. Syntax error

  3. Short dump

  4. No Value

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

The ABAP code attempts to assign a value to a field symbol `before it has been assigned/pointed to any actual data object using theASSIGN` statement. This unassigned reference causes a runtime error, resulting in a short dump.