In a COBOL program, the following statements are coded: CALL 'PROGRAMB' USING A, B, C END-CALL. What is the significance of the END-CALL in the above CALL Statement?
All the woking staorage variables in ProgramB will be initialized when the Program B execution is completed.
Nothing will happen. It is just coded to indicate the end of CALL statement.
Areas A, B and C will be initialized when the Program B execution is completed.
None of the above