what are the control characters used in reports
Answer / nk
1st character of 133-byte report line controls line
spacing. '1' means skip to top of next page. '0' is double
space ' ' is single space. I think '-' is triple space.
Is This Answer Correct ? | 1 Yes | 0 No |
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
I want ALL jcl ERROR cods
What type of Call you would use if you don;t want the control back to the calling program?
How to print 10 to 1 if the input have only 10 digit number?
how do you reference the esds vsam file formats from cobol programs
what is level 66 means??
RENAME clause takes new SPACE in memory.TRUE or FALSE? a)TRUE 2)FALSE
What is IMPACT analysis?
a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?
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.
maximum of how many screens we can open in emulator
PERFORM ACCUMULATE-TOTALS VARYING A FROM 1 BY 2 UNTIL A >2 AFTER B FROM1 BY 1 UNTIL B>2 AFTER C FROM 2 BY -1 UNTIL C<2 How many times the paragraph ACCUMULATE-TOTALS would be exicuted?