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 can u redefine picx(10) with pic 9(6).
i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCDEFGHIJKLMNOPQRESTUVWXYZ ' 05 WS-B REDEFINES WS-A 10 WS-B1 PIC X(10). 10 WS-B2 PIC 9(10). 10 WS-B3 PIC X(10). If I Display B1, B2 and B3 respectively, what is the value displayed in B2
Can a REDEFINES clause be used along with an OCCURS clause? if yes, 01 WS-TABLE. 03 WS-TABLE-EL OCCURS 5 TIMES PIC X(1) VALUE 'A'. 03 WS-EX REDEFINES WS-TABLE-EL PIC X(5). What can you expect? if no,why?
How to resolve the soc4 and soc7 errors?
A s9(4). B v9(4) value 0.21 can i move this?
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.
Which is the best IBM mainframe Training Institute in Ameerpet, Hyderabad
Differentiate between structured cobol programming and object-oriented cobol programming.
How do you differentiate between cobol and cobol-ii?
HOW WE WILL SORT THE ARRAY WHICH IS GOING TO USE FOR SEARCH ALL?
what is call by value and call by reference ?
3 Answers Infosys, ITC Indian Tobacco Company,
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS