How many maximum number of procedures can we write in one
COBOL program?
Answers were Sorted based on User's Feedback
I have a occurs for 100 times but it has executed 101 time what could be the reason?
Write a program that uses move corresponding.
db2 variable decimal(15,2) what is the equalent size of cobol variable
how to crack cts interview apps? NOVEMBER 21 2010
why we are using set in searchall?
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.
What is the difference between static call & Dynamic call?
what is SYNCHRONIZATION?
if i am reading a file with some 50000 records and moving to a DB2 table and suddenly the program abends in between, is there anyway i could restart from the exact record at which the job failed once the program restarts.
What do you do to resolve SOC-7 error?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.