What is the difference between structured cobol programming and object alternativelyiented cobol programming?
No Answer is Posted For this Question
Be the First to Post Answer
What are different file OPEN modes available in COBOL?
What is the local-storage section?
describe 805 error
What is COMP-1? COMP-2?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
what is the difference between external and global variables?
In a program, there are 2 sections defined say SECTION-A and SECTION-B. There is a paragraph say CALC-INT in both the sections. If this para has to be called directly for SECTION-A, then PERFORM CALC-INT will not work as it is present in both sections. How the PERFORM statement has to be coded here?
how we can reverse the string in the cobol for example satheesh can be reveresed as hseehtas
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
i have two file one is ksds another one is esds i want store matching records in flat file how to you matching.
if you give cylinder(1,1)how many cylinders it will be allocate?
should I use Go back in the main program ? Yes we can use Go back in main program as well.