What is the Importance of GLOBAL clause According to new
standards of COBOL?
Answers were Sorted based on User's Feedback
Answer / ms. stanley
A variable delared as GLOBAL can be used by all its
including and included programs. (By all the subprograms and
the main programs)
| Is This Answer Correct ? | 7 Yes | 2 No |
When any data name, file name, condition name or index defined in an including program can be referenced by a directly or indirectly in an included program, provided the said name has been declared to be a global name by GLOBAL.
Format of global clause is 01 DATA-1 PIC 9(05) IS GLOBAL
| Is This Answer Correct ? | 0 Yes | 0 No |
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
If you were passing a table via linkage, which is preferable - a subscript or an index?
Can anyone please give the example of Inline Perform.
diffrence between z(2) and z9(2)
wht do u mean by (*,intrdr) wht is * used for ?
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
what is linkcard in cobol?
Move Zeroes to I move 5 to j perform para1 varying I from 10 by -2 until I = 0 display j. para1. Add 5 to j. What’ll be the value after execution of display stmt. A) 35 B) 40 C) 30 D) 25 please explain how?
How can you pass values from COBOL program to non-COBOL programs?
Which mode is used to operate the sequential file?
how to access the file from prodution from changeman tool and to submit a file to production
What is length is cobol?