what is index and how to use two tables using index?
Answer / venkat
unique is writen in table so we mention in index duplicate records not allowed
| Is This Answer Correct ? | 2 Yes | 3 No |
Can we use redefine clause in occurs clause?
Hi, My interviewer ask A calls B and C calls B, a and b are static c and b are dynamic.what happens if they compile and execute at same time.
I HAVE FOLLOWING DECLARATION. 02. A PIC X(10) VALUE 'XXXXXXXXXX'. 02. B REDEFINES A. 05. C PIC X(3). 05. D PIC X(3). 05. E PIC 9(3). IN MY PROG, I HAVE MOVE 1 TO E. DISPLAY A. WHAT WILL BE DISPLAYED AS A RESULT OF THIS? PLEASE EXPLAIN THE ANSWER. THANKS.
what is dynamic array in cobol? what is the difference b/w array and table in cobol?
given the following piece of code: CALL SUB-PGM USING A, B, C. CALL SUB-PGM USING A, C, C. (a) Both CALL statements will always produce same result. (d) Both CALL statements may produce different result. (c) Compile-time error because SUB-PGM is a dataname. (d) Compile-time error because A, B, C are used twice.
how to know that the file has 300 records how to acess it?
What are VS COBOL 11 special features?
I have a file it contain 10 records.i got abend at 8th record because of soc7.how do you know that perticular record got abend?
What rules are to be followed while using the corresponding options?
How to define a array dynamically.....
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these