wht is structured cobol pgm and non structred cobol pgm ?
Answer / ss
Structured programming is a logical way of programming; you divide the functionalities into modules and code logically.
The difference between regular programming approach and structured programming is that structured programs get rid of GO TO statements and the whole programs can be represented in a Top-Down design
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the different between index and subscript?
What is tne need to use sub programs in Cobol?
How to increase the logical record length of existing PS file?
If you were passing a table via linkage, which is preferable - a subscript or an index?
How to read a record from bottom of a file which is indexed by 'A'.
copy 100 records without using ibm utilities
what do you mean by copybook? and what is the difference between the copybook which we are using in working storage and procedure division.
How can we increase the size of an existing PDS to include more no. of modules.
01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?
how to change picture class of copy book variable inside program?
What is the difference between PIC 9.99 and PIC9v99?
What is the use of EVALUATE statement?