how do you define single dimensional array and multidimensional array in your cobol?
No Answer is Posted For this Question
Be the First to Post Answer
How to Write the RESTART Logic Using COBOL?
4 Answers GalaxE, L&T, Syntel, TCS,
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
How we copy a program from production region to development region.What is the process & syntax ?
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.
how to display comp3 variables reply soon ?
IDENTIFICATION DIVISION. PROGRAM-ID. MOVEPGM. DATA DIVISION. WORKING-STORAGE SECTION. 01 WS-I PIC 9(2). PROCEDURE DIVISION. A1000-MAIN-PARA. PERFORM PARA-X WITH TEST BEFORE UNTIL WS-I= 5 STOP RUN. PARA-X. DISPLAY "BEST2". I m getting error s722,while executing the program, seems getting in loop, can anybody tell me why
How are the next sentence and continue different from each other?
diffrence between renames and redifnes with examples
What is the difference between a binary search and a sequential search?
What does the IS NUMERIC clause establish ?
What are the different open modes available in cobol?
Write the code implementing the perform … varying.