Multiple choice technology mainframe

How to initialise the values while declaring the variable

  1. #FIELDA (N3) = <100>

  2. #FIELDA (N3) INIT <100>

  3. #FIELDA (N3) INITIALISE <100>

  4. ALL

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

In Natural Cobol, variables are initialized using the INIT keyword followed by the initial value in angle brackets. The correct syntax is #FIELDA (N3) INIT <100>.