What is the difference beetween Arrays and Tables in Cobol?
please dont give the answer that arrays in cobol
terminology is called tables......
Answers were Sorted based on User's Feedback
Answer / obul
Storing the similar type of data in contiguous memory
locations is called an Array and storing the different type
of data in contiguous memory locations is called Table in COBOL.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / ravendra singh
we can use subscript with array but in the other hand with
table we can use indexing. we can perform search with array
by using subscript but with the table we can use both
subscript and the indexing searching an element into table.
| Is This Answer Correct ? | 0 Yes | 0 No |
how to pass 100 to s9(4) how r they inserted ?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
Please let me know at which Scenarios we will go for STATIC call or DYNAMIC
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
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?
if you give cylinder(1,1)how many cylinders it will be allocate?
Why we are using comp and comp-3 in real time projects?
if a dataset is already created with fixed length but after that i want to change fixed length to variable length then how is it possible
What is a SSRANGE and NOSSRANGE?
In COBOL, what is the different between index and subscript?
0 Answers TryTechnicals Pvt Ltd,
Is It Possible to Update or change in VIEW Mode?
What are the divisions in a cobol program? Which one is the mandatory division among them?