If we use GO BACK instead of STOP RUN in cobol?
Answer / guest
we can use both goback and stop run in cobol when there is no
call statement to show termination of the program....
if we use go back it transfer control to the main program.
else we use stop run it releases the program from the main
memory give the control back to the operating system.
| Is This Answer Correct ? | 5 Yes | 0 No |
01 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy
What are different data types in cobol?
What the difference is between continue and next sentence?
how to check whether the open command of a sequential file is successful? or not?
I know my query will return more than one row but I don't want cursor what should I do?
What is Redefines clause?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
hw to create 3 dimensional array & hw to access it?
Can you REWRITE a record in an ESDS file? Can you DELETE a record from it?
6 Answers ABC, IBM, Mphasis, Wipro,
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
how do you reference the fixed unblock file formats from cobol programs
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.