What COBOL construct is the COBOL II EVALUATE meant to
replace?
how do you reference the rrds file formats from cobol programs
Hi All, how is sign is stored in S9(17) comp-3 variable. Answer with an Example will be of great help.
I want to remove a duplicates form a given input field using cobol program. please Any one help me out to solve this ... Thanks in Advance.
How can you submit a job from COBOL programs?
Define cobol?
what are the steps to sort in a cobol program?
When is a scope terminator mandatory?
how to convert vsam table into DB2 table?
Can anyone explain me CALL procedure in COBOL.Does it carries similarities like call by reference in C.
What is the difference between SEARCH and SEARCH ALL?
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this