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 |
What is binary search?
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
COMPUTE X = A * B - C * D and COMPUTE X = (A * B) - (C * D) (a) Are not the same (b) Are same (c) Syntactically wrong (d) Will yield a run time error
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
Can anyone explain me CALL procedure in COBOL.Does it carries similarities like call by reference in C.
in how many mode we can open a file ?
copy 100 records without using ibm utilities
How can we find out wether to declare the data items like Integer, Char,Comp? If comp types how can we decide wether it is Comp and Comp3.How it is? Please Explain... Cheers.
how we rectify soc4 and soc7 error in project(need real time answer)? please reply
What is the difference between PIC 9.99 and PIC9v99?
Write the code implementing the perform … varying.
plz,could any one tell me? what about EBCDIC in cobol?briefly?