perform I from 0 by 1 until I=5?How maney times it will
executes

Answer Posted / satya

In this PERFORM loop, I is subscript. Minimum value for the
subscript is 1. As the subscript starting value is zero in
this loop, the program will not compile successfully. It
will show compilation error.

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the configuration section of a cobol program with examples of syntax.

659


What is a SSRANGE and NOSSRANGE?

820


In which area will you utilize 88 level items in cobol?

722


What is the default value(s) for an initialize and what keyword allows for an override of the default?

694


here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?

6825






What is the difference between next sentence and continue in cobol programing language?

708


What is the difference between binary search and sequential search?

638


can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech

1954


how to move the records from file to array table. give with code example

2219


) what is the difference between AID and HANDLE AID?

1635


In COBOL programming, what is PERFORM? What is VARYING?

670


How do you differentiate between cobol and cobol-ii?

656


What happens when we move a comp-3 field to an edited (say z (9). Zz-)?

776


What is the compute verb? How is it used?

659


2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic

2111