In which area will you utilize 88 level items in cobol?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the difference between subscripting and indexing ?
What is the difference between comp and comp-3 usage?
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?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
S9(5)V9(2) occupies how many bytes memory ?
Suppose a program has the following code. What will be the output? MAIN-PARA. DISPLAY 'MAIN-PARA' PERFORM SECTION-A. STOP RUN. SECTION-A. PARA-A1. DISPLAY 'SECTION A PARA A1'. PARA-A2. DISPLAY 'SECTION A PARA A2'.
How can you pass values from COBOL program to non-COBOL programs?
how will u retreive value from a table.write it with syntex. 01 ws-table 05 ws-table1 occurs 10 times. 05 ws-table2 occurs 10 times. the above is 2 dimensional array..how will u retrieve 1st element of an array
can I copy book which contain db2 statment in procedure divion?
Can we use goto statement in inline_perform ?
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?
Have you code any new programs in COBOL ? What is the functionality of the programs?