what will happen if i give program name and member name as
different? program runs successful or w'll abend?
Answers were Sorted based on User's Feedback
Answer / vijay
The program will be compiled successfully and the load will
be created with the member name only. So, no issues with
program name and member name being different.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / prachi
During compilation the program will give an error
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / tata
(a)//COMPILE.SYSIN DD DSN=OZA093.SUNIL.COBO1(DATE),DISP=SHR
(b)//LKED.SYSLMOD DD
DSN=OZA093.SUNIL.LOADLIB(DATE),DISP=SHR
here (a) is for compilation.and (b) is for
execution.i.e.loadmodule of our program. after compilation
of our program.the compiler will generate an object code to
our program. this only going to be executed..what ever u
give at
LOADLIB(DATE)..this name (for my program loadmodule name is
date) should be specified at
//step exec pgm=loadmodulename.(here date).
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / sudhir
Compile will be succesful. but while linking the program-name will be used to scan the Object library. it will not be found and linking will not complete successfully.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / raj
If its been dynamically called by some other program then
the member name and the program name should be same .
else if its standalone program then it will work
| Is This Answer Correct ? | 1 Yes | 0 No |
if you code move high-values to variable,can you move it into numeric variable or alphanumeric variable?
How do u know what version of cobol u are using?
what is internal sort and external sort ? which is preferable ?
What is the difference beetween Arrays and Tables in Cobol? please dont give the answer that arrays in cobol terminology is called tables......
can we use COPY statement in w-s section? how?
wht happens if we dnt give scope terminator ?
what is the difference between PA & PF keys?
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
which one is better among static call and dynamic call?
01 A pic 9(100) find record length of it
What are the different data types in cobol?
What is the file organization clause ?