what is the difference between external and global
variables?
Answer / guest
Global variables are accessible only to the batch program
whereas external variables can be referenced from any batch
program residing in the same system library.
| Is This Answer Correct ? | 19 Yes | 10 No |
what is the difference between implicit and explicit scope terminator with example?
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.
What does EXIT do ?
suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.
What are VS COBOL 11 special features?
if a=b how the flow will complete??? perform test through test-exit. perform activa through activa-exit. test. if a=b then next sentence else move a to c. test-exit. exit. activa. -- -- activa-exit. exit.
how do you reference the variable block file formats from cobol programs
How may divisions are there in JCL-COBOL?
) How do u handle errors in BMS macro
what is subscript in cobol?give realtime example?
How many bytes will be allocated for the following record description entries? 01 REC-A. 05 A PIC S9(4). 05 B PIC XXXBXXX. 05 C PIC ____9.99. 05 D PIC S9(5) COMP-3. 05 E PIC 9(3) COMP.
16 Answers IBM, TCS,
how to fetch the record before the last record in a cobol file( its a huge file and if the key field is not known)