should I use Go back in the main program ? Yes we can use
Go back in main program as well.
Answers were Sorted based on User's Feedback
Answer / sanjeev gupta
We can use goback both in main program and sub program. The
difference is that only, in case of sub program: after the
successful execution the control will pass to main program
whicle in case of main program:the control will pass to OS.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / raj
yes we can use goback in the mainprogram only if it is a
standalone program.
| Is This Answer Correct ? | 4 Yes | 1 No |
Differentiate between structured cobol programming and object-oriented cobol programming.
what is the default print format? in cobol
what is meant by binary search?
can you declare redefine in level 01?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
What is SSRANGE, NOSSRANGE ?
Difference between next and continue clause
Is this allowed? 01 WS-TABLE. 03 FILLER-X PIC X(5) VALUE 'AAAAA'. 03 WS-EX REDEFINES FILLER-X OCCURS 5 TIMES PIC X(1). can redefines clause be used with occurs clause?
Under which scenario you would go for a static call as opposed to dynamic call?