What is a scope terminator? Give examples.
Answers were Sorted based on User's Feedback
Answer / aji cherian
If.. end-if
Perform .. end-perform
read... end-read
evaluate... end-evaluate etc...
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / vampire
"."
stop-run
exit
end-if
exit
end-evaluate
end-search
end sort
| Is This Answer Correct ? | 1 Yes | 1 No |
I have two sequential files, FILE-1 and FILE-2. FILE-1 contains 2 columns(A,B) and FILE-2 contains 3 columns (C,D,E).I want an output file, FILE-3 which has all five columns with duplicates eliminated from column A.
what are the limitations of Inline Perform?
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
Explain Restart Logic in Cobol?
How to use the same COBOL program in Batch and CICS on lines? explain with an example
There is a variable with value 19446. Requirement is to convert it to 194.46. I tried it by doing divide by 100 and my receiving field data type is 9(03)v99. But the output is 194. I am not getting the decimal value. Could anyone pls let me know how to get this done?
How to find How Many Lines in Sysin DD * Parameter Thru Cobol Coding? If any one knows the Answer Please Reply .....Thanks From Shree
What are the various section in data division and briefly explain them.
hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps
Write a program to enter and display the names of students in a class using the occurs clause.
how to pass 100 to s9(4) how r they inserted ?
how do you move only numeric data from A to B 01 A pic x(10) value 'a1b2c34d5e'. 01 B pic x(5).