What compiler option would you use for dynamic linking?
Answers were Sorted based on User's Feedback
Explain the configuration section of a cobol program with examples of syntax.
i want all ERRORS codes in COBOL ,JCL,VSAM ,DB2,CICS
Explain call by context by comparing it to other calls.
in cobol main pgm is calling sub pgm but sub pgm does not exists , what abend i get if submit the job?
How can you add a particular field/coloumn in copybook?
Suppose, file A has 100 records and file B has 500 records. We want to write records common to both A and B into file C and records which are present only in either A or B into another file D. What should be the logic of Cobol program to achieve this?
7 Answers Bank Of America, Mind Tree,
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
What are the steps you go through while creating a COBOL program executable?
What is the difference between SEARCH and SEARCH ALL? What is more efficient?
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
What is the difference beetween Arrays and Tables in Cobol? please dont give the answer that arrays in cobol terminology is called tables......
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.