what is a load module ?
Answers were Sorted based on User's Feedback
Answer / chandu
The load module is the executable program code.
load modules are executable versions of ur pgm.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / shiva
when we code a program..we compile it for any errors and for
generating object code..after tat we linkedit tat source
code(s)in to a single executable program code(load module
) which can b understandble by the system...
| Is This Answer Correct ? | 4 Yes | 0 No |
what is meaning by design document? who can repared for this?
What is the file organization clause ?
Define cobol?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
01 a pic 9(6) value is 123456 01 b pic 9(3) move a to b wht will be the value ?
In a program, variables are used but no DB2 involved in it. Can you call it as host variables??
how to access vsam files in cobol and how to differentiate that this is ESDS file
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
At the minimum, which division of COBOL is enough to be coded?
What is the difference between CALL BY VALUE and CALL BY CONTENT?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
Suppose i have a variable with s9(18)v99 comp3 . what is the size of variable . If s9(18) comp3 is 10 bytes . There should be some difference between two allocations ? Thanks krishna chaitanya