What is report-item in COBOL?
No Answer is Posted For this Question
Be the First to Post Answer
What are the differences between OS VS COBOL and VS COBOL II?
using redefine can you redefine lower variable size to higher variable size?
What is SET TO TRUE all about, anyway?
How many maximum number of procedures can we write in one COBOL program?
What are the pertinent COBOL commands?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?
In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
WORKING-STORAGE SECTION. 01 A PIC X(3) VALUE 'ABC' 01 B PIC 9(3). PROCEDURE DIVISION. MOVE A TO B. STOP RUN. OUTPUT IS: AB3 WHY AND HOW THIS IS HAPPENING.
What are the steps you go through while creating a COBOL program executable?