if a>b
continue
display x.
dispaly y.
end-if
display 1
display 2.
display 3.
what should be my output ?
Answer Posted / javed
There will be a compilation error.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
What is a SSRANGE and NOSSRANGE?
What are the rules of the move verb?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
how do you reference the variable block file formats from cobol programs
What rules are to be followed while using the corresponding options?
What are different data types in cobol?
how to access the file from prodution from changeman tool and to submit a file to production
What is the usage of comp fields in cobol?
How do define dynamic array in 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 ......
What is the local-storage section?
What are the different rules to perform a Search?
) how do u code after getting data?
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 ?