what is rediffine clause?in what situation it can use?give me
real time example?
Answer / sukesh adhikary
When u want to use same working storage area for different
variables. u must ensure that the space must not use at same
time of program execution.For example perform xyz uses a
space ABCD pic x(9) and it will not be used .then other
part of the program can use that space ABCD.
sukesh
9831281032
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between a binary search and a sequential search what are the pertinent cobol?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
9(2).99 how many bytes take? Why . consider as a byte?
Consider the below example call a-test1. -- -- -- a-test1. if a=b perform a-test through a-exit next sentence else if b=c perform c-test through c-exit. if a=d perform d-test through d-exit. a-test. -- -- a-exit. exit. can u tell me what will happen if a=b after looping into a-exit will the control go back to a- test1. will the condition a=d be checked???
How to Pass table from a cobol program to another cobol program and how to use that table in called program
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?
if a dataset is already created with fixed length but after that i want to change fixed length to variable length then how is it possible
What is CALL statement in COBOL?
Why occurs can not be used in 01 level ?
1.Can we define condition-name conditions in FD entry.
1)what is use of linkage section? 2)what is difference between comp and comp-3
what is the difference between perform varying and perform until