When is a scope terminator mandatory?
Answers were Sorted based on User's Feedback
Answer / guest
scope terminators are mandatory for in-line performs and
evaluate.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / guest
scope terminators are mandatory for in-line performs and
evaluate.
| Is This Answer Correct ? | 4 Yes | 0 No |
Is it possible to mutliply a comp variable with an comp-3 variable. Will there be any error if i do it?
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
0 Answers TryTechnicals Pvt Ltd,
What is the Purpose of POINTER Phrase in STRING command in COBOL?
What is the purpose of Identification Division?
can u give result for the fallowing example... 05 a pic 9(2) 05 b redifines a pic x(2). move 'xy' to b. display a,b.
IF there 5 to 6 files in a JCL and there is some space abends, how can we identify which file has space abend and what can be done to get off that abend or rectify that abend.
what are the diferences b/w sub-script and index?
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.
give the examples of strings in cobol
Why occurs can not be used in 01 level ?
I have put two write operations in a single para for two different conditions.Will that lead to an abend or run successfully and write two records?