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 |
Where the Plan is located in CICS-DB2
What is reference modification? What is UNION in sql and syntax? What is the difference between GDGS and VSAM? Which is prefer one? What is processing groups in endevor?
What is the difference between static call & Dynamic call?
What is the purpose of Identification Division?
how the control comes back from subprogram to mainprogram
Define static linking and dynamic linking.
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
input= ,,,, mainframe training ,,, hyderabad .... location.... output1=$ mainframe training in hyderabad location$ output2=**** mainframe training in hyderabad location ****. In this pgn when we give input considering the spaces the output is displayed in this format.Like in the place of ,,,, $ should be displayed likewise.So please helpmeout.
How to delete the records of a dataset through cobol programme?We should not use jcl utilitities like IDCAMS.
There is a variable with value 19446. Requirement is to convert it to 194.46. I tried it by doing divide by 100 and my receiving field data type is 9(03)v99. But the output is 194. I am not getting the decimal value. Could anyone pls let me know how to get this done?
Hi pls anybody tell me about " ANALYSIS DOCUMENT PREPARATION AND ESTIMATION OF TASK " (in real time project)."I want to update a sequential file in my project" for that purpose i need both structures i mean analysis document and estimation of task.
what is dynamic array in cobol? what is the difference b/w array and table in cobol?