Multiple choice technology programming languages What is output of the this code? REPORT ZTEST. field-symbols: type c. = '10'. write:/ . 10 Syntax error Short dump 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.