What guidelines should be followed to write a structured Cobol prg’m ?


1) use ‘evaluate’ stmt for constructing cases.
2) use scope terminators for nesting.
3) use in line perform stmt for writing ‘do ‘ constructions.
4) use test before and test after in the perform stmt for writing do-while constructions.



Explore posts in the same categories: Cobol Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • What guidelines should be followed to write a structured Cobol prg’m ?
  • use 'evaluate' stmt for constructing cases. 2) use scope terminators for nesting. 3) use in line perform stmt for writing...
  • What is the difference between Structured COBOL Programming and Object Oriented COBOL ?
  • Structured programming is a Logical way of programming, you divide the functionalities into modules and code logically. OOP is a...
  • What are the differences between COBOL and COBOL II ?
  • There are at least five differences COBOL II supports structured programming by using in line Performs and explicit scope...
  • What are the differences between COBOL and COBOL II ?
  • There are at least five differences: COBOL II supports structured programming by using in line Performs and explicit scope terminators,...
  • What are the differences between OS VS COBOL and VS COBOL II ?
  • OSVS Cobol pgms can only run in 24 bit addressing mode, VS Cobol II pgms can run either in 24...
  • How to execute a set of JCL statements from a COBOL program ?
  • Using EXEC CICS SPOOL WRITE(var-name) END-EXEC command. var-name is a COBOL host structure containing JCL statements....
  • How to execute a set of JCL statements from a COBOL program?
  • Using EXEC CICS SPOOL WRITE(var-name) END-EXEC command. var-name is a COBOL host structure containing JCL statements....
  • What is Structured Exception Handling?
  • Structured Exception handling is a fundamental part of the CLR, and provides .NET programmers with a great way of managing...
  • What is difference between COBOL and VS COBOL II ?
  • In using COBOL on PC we have only flat files and the programs can access only limited storage, whereas in...
  • How do you submit JCL via a Cobol program ?
  • Use a file dd1 DD sysout=(, intrdr)write your JCL to this file. Pl some on try this out....

    Comments are closed.