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 |
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.
what are the error codes in cobol, db2, cics, vsam , and jcl
can we use COPY statement in w-s section? how?
why occurs clause not mentioned in 01 level
6 Answers HCL, NIIT, TCS, Tesco,
how to remove leading spaces and zeroes in a cobol variable.is there any easy way to do it
What is the difference beetween Arrays and Tables in Cobol? please dont give the answer that arrays in cobol terminology is called tables......
I hv ten records in ps file and i hv say some 15 records in vsam file .i hv empno and age in ps file n empno,empname,dept n desig in vsam file. i hv 2 read the ps file n check wid matching empno in vsam file and then insert all fields from ps and vsam into db2 table....plz help in writin the procedure division
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
what is jcl approach for programming?
How to convert bunch of words in a line to relvant ASCII values?
How do define Dymanic array in cobol how do u define single demensional arry and multidymensional arry in ur cobol.
What do you feel makes a good program?