In a COBOL II PERFORM statement, when is the conditional
tested, before or after the perform execution?
Answer Posted / shubha
here Before is default,but if After is mentioned then
condition will be checked after perform execution.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
How you can read the file from bottom?
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 ?
how to access the file from prodution from changeman tool and to submit a file to production
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
Write down the divisions of cobol program?
how do you reference the variable unblock file formats from cobol programs
Which Search verb is equivalent to PERFORM…VARYING?
What rules are followed by the search verb.
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
What is the problem of ordered sequential files access?
How do u write test cases?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
How to print 10 to 1 if the input have only 10 digit number?
Explain what you understand by passing by value.