What is the difference beetween Arrays and Tables in Cobol?
please dont give the answer that arrays in cobol
terminology is called tables......
Answer Posted / 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 |
Post New Answer View All Answers
How do define dynamic array in cobol.
how to refer the data field?
How do we get current date from system with century in COBOL?
what is amode(24), amode(31), rmode(24) and rmode(any)?
What are various search techniques in cobol? Explain.
how do you reference the ksds vsam file formats from cobol programs
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
Write the code implementing the perform … varying.
Explain what you understand by passing by value.
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
What is a scope terminator give example?
How do you get the data to code the BMS macro?
what is the difference between COBOL2 AND COBOL390?
What type of SDLC u followed? Why?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.