please..could u give an example about USAGE IS
POINTER ..and explain why and when we use it ?
No Answer is Posted For this Question
Be the First to Post Answer
How many maximum number of procedures can we write in one COBOL program?
What are the different data types available in COBOL?
Can you call an OS VS COBOL pgm from a VS COBOL II pgm ?
How is sign stored in Packed Decimal fields and Zoned Decimal fields?
Differentiate between structured cobol programming and object-oriented cobol programming.
Discuss about changing dataset name in proc.
I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.
consider the following two IF statements: IF X AND NOT Y MOVE A TO B IF Z=1 OR 9 MOVE A TO B select one of the following data divusion entries which gives identical results for both the above IF statements a.01 Z PIC 9 88 X VALUE 1.9 88 Y VALUE 0.2 THRU 8 b.01 Z PIC 9 88 X VALUE 0.2 THRU 8 Y VALUE 1.9 c.01 Z PIC 9 88 X VALUE 1.9 88 NOT-Y VALUE 0.2 THRU 1.9 d.none of yhe above
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?
What is "Call by content" and "call by reference"?
what is SYNCHRONIZATION?
Can we redefine the field of x(200) to less than 200?