In EBCDIC, how would the number 1234 be stored?
Answers were Sorted based on User's Feedback
Answer / veni
It will occupy only 2 bytes.Each byte will occupy 1/2 byte.
12 34
| Is This Answer Correct ? | 9 Yes | 3 No |
If a sub program is called from mainprogram.I have opened cursor in main program and Fetch the result in subprogram ,Is it possible ?If yes please tell me the reason.
What is the difference between external and global variables in COBOL?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
what are the paramater we cannot use in procedure?how many instream we can write in single jcl?can we call instream to catalog and ctalog to instream?
What is the significance of the PROGRAM-ID paragraph? If this name doesnt match with the name of the COBOL program, does it make a difference? Is the name specified in the PROGRAM-ID paragraph used as a name for the load module or any such thing?
If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?
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.
01 x pic s9(8) comp. How will the following value be internally allocated '18787'
What is the Importance of GLOBAL clause According to new standards of COBOL?
write a program to eliminate duplicate records in a input file and send them to output file.
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
Can you call an OS VS COBOL pgm from a VS COBOL II pgm ?