What is static and dynamic call in cobol?
No Answer is Posted For this Question
Be the First to Post Answer
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
In which area will you utilize 88 level items in cobol?
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
In a program, variables are used but no DB2 involved in it. Can you call it as host variables??
In an EVALUTE statement is the order of the WHEN clauses significant?
How many sections are there in data division?.
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
wht do u mean by (*,intrdr) wht is * used for ?
what is label record is standard or omitted in file description of data division?
How to read records which is in sequential file in reverse order ? Exp. 1 2 3 4 5 . i want 5 4 3 2 1?please clear my doubt any one
What is SSRANGE, NOSSRANGE ?
what if any ,is the syntex error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.