wht is load module and object module ?
Answers were Sorted based on User's Feedback
Answer / ven
load module is executable and object module is not
executable. when u compile the program object module wil be
created.
| Is This Answer Correct ? | 33 Yes | 1 No |
Answer / prachi
Load and object modules are same..Both will have the
copiled code which is executable...
| Is This Answer Correct ? | 0 Yes | 35 No |
can we read records in a file from botom to top. if possible how can we read
what is s013u000 for?
I have a variable account-number declared as comp-3, s9(10) comp-3 in a file. How do i find a particular account number say 123456 in that file?
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.
What will happen if we generate GDG (+2) version without generating (+1) version?
What is difference between comp & comp-4?
how many subpgms we can use in a main pgm ? how do u link sub pgm to main pgm ? how can i use the parameters declared in main pgm to sub pgm ?
what is the difference between Plan & package?
how can u pass the values into db2 values from cobol ?
I have a sequential file of 100 records. How do I load the records into a two dimensional array ?
which one is better among static call and dynamic call?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?