In a COBOL II PERFORM statement, when is the conditional
tested, before or after the perform execution?
Answers were Sorted based on User's Feedback
Answer / 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 |
. How do we cast a variable in COBOL
What R 2 of the common forms of the EVALUATE STATEMENT ?
How do u sort the table for Search ALL? Is it only using ASCENDING KEY IS statement in occurs clause? If the data is input in non ascending order, will the ASC KEY IS automatically sort the data? or will it throw compile time error?
Difference between cobol and cobol-ii?
Suppose a program has the following code. What will be the output? MAIN-PARA. DISPLAY 'MAIN-PARA' PERFORM SECTION-A. STOP RUN. SECTION-A. PARA-A1. DISPLAY 'SECTION A PARA A1'. PARA-A2. DISPLAY 'SECTION A PARA A2'.
What is the difference between a binary search and a sequential search?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
How is sign stored in a comp-3 field?
Can anyone tell me how to handle the array beyond the limit. If we have an array or a table which can handle 5000 records but now we have to compensate 20000 records with the same array? how to handle the situation.
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)?
there is a file whose ORGANISATION is INDEXED.you want to read the records from the file in RANDOM fashion as well as sequentially.then which of the access mode would you specify? a.SEQUENTIAL b.RANDOM c.DYNAMIC D.ACCESS MODE has nothing to do with it
a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?