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 |
How do you code Cobol to access a parameter that has been defined in JCL?
01 b pic +9(4) How many bytes it will take for storage???
Have you code any new programs in COBOL ? What is the functionality of the programs?
if a=b how the flow will complete??? perform test through test-exit. perform activa through activa-exit. test. if a=b then next sentence else move a to c. test-exit. exit. activa. -- -- activa-exit. exit.
Which of the following files can be OPENed in all the 4 modes? The four modes are INPUT, I-O, OUTPUT and EXTEND. (a) INDEXED (b) RELATIVE (c) SEQUENTIAL (d) All of the above
what is the use of filler in cobol programing?
how to crack cts interview apps? NOVEMBER 21 2010
What is sqlca and why is it needed in any cobol-db2 program?
Can we redefine the field of x(200) to less than 200?
What is Comm?
2 Answers IBM, Kemper Corporation,
01 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy
Hi................... I have records like this aaaa cccc bbbb And i want output like this bbbb cccc aaaa How can it possible ?. Note:Please make sure records are in unsorted order. somebody plzzz help me.