What is the Purpose of POINTER Phrase in STRING command in COBOL?
No Answer is Posted For this Question
Be the First to Post Answer
What is 66 level number and where it is used in real time by software developers?
2 Answers ITC Indian Tobacco Company, TCS,
Explain fixed length record in cobol? with suitable example
what is the coding difference between COBOL and CICS.
I want ALL ERROR codes in VSAM
3 Answers American Express, TCS,
01 ws-p pic 9(2). 01 ws-q pic 9(2) value 01. 01 ws-r pic 9(2) value 99. p.d. compute p = q + r what will be result of p ans(00) but my question is that how i got 10 on the place of 00. (truncation will ocuure on right side not left). please tell me ?
77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value zeros. move a to b what is the answers for both cases? IS it possible? Give me elementary move rules briefly......
How do you do in-line PERFORM?
What do you do to resolve SOC-7 error?
how can we get current dat and time thru cobol pgm
what is call by value and call by reference ?
3 Answers Infosys, ITC Indian Tobacco Company,
How can we increase the size of an existing PDS to include more no. of modules. I tried the answer posted by Jagan(TSO PDS 'pds name') but did not find it working. The answer posted by kamal i know very well. Please suggest me a answer so that we don't need to delete the existing PDS and still we can change the size as well.
what if any ,is the syntex error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.