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 |
I have put two write operations in a single para for two different conditions.Will that lead to an abend or run successfully and write two records?
What is the linkage section?
how can you identify wheather the program is using search or search all in the cobol program?
What is a SSRANGE and NOSSRANGE?
diffrence between z(2) and z9(2)
i Want All cobol ERROR codes?
RENAME clause takes new SPACE in memory.TRUE or FALSE? a)TRUE 2)FALSE
hw to create 3 dimensional array & hw to access it?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
what is the difference between PA & PF keys?
How is sign stored in a comp-3 field?
01 a pic x(6) value is abcdef 01 b pic x(3) move a to b wht will be the value in b ?