wht is structured cobol pgm and non structred cobol pgm ?



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

Post New Answer

More COBOL Interview Questions

Can you please let me know the centre name of INS certification in Kolkata.

0 Answers  


wht r the advantages of 77 level number ?

8 Answers   TCS,


What is the difference between comp and comp-3 usage?

0 Answers  


BY seeing a program how can we say that it is static call or dynamic call

5 Answers   CGI,


What are the pertinent COBOL commands?

0 Answers   Satyam,






OCCURS clause is used in the DATA DIVISION on data names at (a) 01 level (b) 77 level (c) 88 level (d) any level from 02 to 49

13 Answers   TCS,


What is 88 level used for ?

2 Answers  


what are the error codes in cobol, db2, cics, vsam , and jcl

2 Answers   TetraSoft,


What are the steps you go through while creating a COBOL program executable?

3 Answers  


Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS

2 Answers  


I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?

0 Answers   HCL,


what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C

3 Answers   TCS,


Categories