What is the figurative constant in cobol?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
How many times the loop runs here 01 a pic 9(2) value 10. perform para1 a times stop run. para1: move 20 to a.
how many bytes do SPPPP999 will store?
What are various search techniques in cobol? Explain.
COMP field occupy ?
Extract only those records from a PS file which are having word 'TEXT' in the records using COBOL? The word TEXT is not present in a particular position in all the records.
In COBOL, what is the different between index and subscript?
0 Answers TryTechnicals Pvt Ltd,
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.
Can we use icetool in cobol program?
Can we dynamically increase the size of occurs clause? i.e In case I an not sure of the size of array and want to increase the size at run time.If yes , how?
When can the USING phrase be included in the call statement ?
I have a occurs for 100 times but it has executed 101 time what could be the reason?