What do you understand by psb and acb?
No Answer is Posted For this Question
Be the First to Post Answer
If there are two files one with 100 records and other with 101 records. we have to find out the one record that is the odd man out . What are the steps to do it
which is better comp or comp-3 in terms of memory utilization?
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
How to increase the logical record length of existing PS file?
How will you find the currepted records in a file
hw to create 3 dimensional array & hw to access it?
How to covert given string into ASCII value in COBOL/MF COBOL
What is the difference between Structured COBOL Programming and Object Oriented COBOL ?
how to run sub programs using static and dynamic call ...
Size 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?
What does EXIT do ?
I HAVE FOLLOWING DECLARATION. 02. A PIC X(10) VALUE 'XXXXXXXXXX'. 02. B REDEFINES A. 05. C PIC X(3). 05. D PIC X(3). 05. E PIC 9(3). IN MY PROG, I HAVE MOVE 1 TO E. DISPLAY A. WHAT WILL BE DISPLAYED AS A RESULT OF THIS? PLEASE EXPLAIN THE ANSWER. THANKS.