where do u use low-value and high value in cobol
Answer Posted / mehdee
When you need a data field to have value less than any
other data INITIALZE or MOVE LOW-VALUES to that filed. same
for HIGH-VALUES when you need that field to have valuue
more that any other data.
| Is This Answer Correct ? | 21 Yes | 2 No |
Post New Answer View All Answers
Can we redefine the field of x(200) to less than 200?
What is static and dynamic call in cobol?
A table has two indexes defined. Which one will be used by the SEARCH?
What is the difference between a binary search and a sequential search what are the pertinent cobol?
In COBOL programming, what is PERFORM? What is VARYING?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
Define cobol?
What is the difference between perform … with test after and perform … with test before?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
Which Search verb is equivalent to PERFORM…VARYING?
how to access the file from prodution from changeman tool and to submit a file to production
How are the next sentence and continue different from each other?
Explain what you understand by passing by value.
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?