01 a pic 9(3) value is 123 01 b pic 9(6) move a to b wht will be the value ? and 01 a pic x(6) value is abc 01 b pic x(3) move a to b wht will be the value ?
7 11164Size of a column has been changed in DB2 table (Suppose it was of 5 characters and later changed to 4 characters) and forgot to change the DCLGEN in COBOL program, what will happen during the execution of code? If the program Abends then what will be the error? If it doesn't abend then hpw the error can be catched?
IBM,
5 11021I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..
EDS,
2 6435How to define variable 9(20) in COBOL, because compiler does not allow us to declare variables with Pic 9(18). Can anyone please let me know the answer... I know one answer to this question which is to use Compiler option Arith (Extend) during Compilation. It extends the maximum limit to 9(32)..Just wanted to know if there is any other way to extend this?
4 18325
how do you define single dimensional array and multidimensional array in your cobol?
How to use the same COBOL program in Batch and CICS on lines? explain with an example
What rules are followed by the search verb.
What is inspect in cobol ?
How do define dynamic array in cobol.
How do u write test cases?
Which Search verb is equivalent to PERFORM…VARYING?
how do you reference the printer file formats from cobol programs
What are the various section in data division and briefly explain them.
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
Are you comfortable in cobol or jcl?
example for sub strings ? and refernce modifications whit output pls
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?