where do u use low-value and high value in cobol
Answer Posted / aditya
it depends upon the logic we are writing.if we dont know the lowest value record.we can move the low values and can write a logic as read next in the case of files concept.its just an example
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
Can we redefine the field of x(200) to less than 200?
explain sorting techniques in cobol program?
Explain the configuration section of a cobol program with examples of syntax.
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What is the difference between Global and External Variables?
what is search and searchall?what is the diffrence between them?give an best example?
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
Discuss about changing dataset name in proc.
In COBOL programming, what is PERFORM? What is VARYING?
How to use the same COBOL program in Batch and CICS on lines? explain with an example
What is length is cobol?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
How do you get the data to code the BMS macro?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.