Can we redefine the field of x(200) to less than 200?
No Answer is Posted For this Question
Be the First to Post Answer
Can the OCCURS clause be at the 01 level?
Program A calls program B. Will the working storage variables declared in program B be initialized every time it is called by program A or will the values be retained until the end of program A?
What are the different forms of EVALUATE statement?
What does the IS NUMERIC clause establish ?
I have the file which is having the extension no as records. sample file will look like below. 2310 3410 3256 4350 3781 5408 I need to replace the record which is starting with 3 to 5 (i.e) 3410 to 5410. How can we do it through cobol and cobol-db2 program? I need the possible logic?
We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.
what is the minimum number of lines a Cobol program should have to successfully compile and run
how the control comes back from subprogram to mainprogram
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
in the TIME parameter we r giving hours r minutes
Write a program to concert an Indexed file into Sequential file?
how will u code parm parameter and where pls ?