what is linkcard in cobol?
Answer / rana
//LINKCARD EXEC PGM=IEWL,COND=4,LT,COBOL),
// PARM='XREF,LIST,AMODE(31),RMODE(ANY),RENT,REUS'
//SYSPRINT DD SYSOUT=*
//SYSLIB DD DISP=SHR,DSN= Provide the Load module PDS
XREF - Direct Refrences
AMODE - Addressing MOde
RMODE - Resident Mode
RENT - re-entrant Program
| Is This Answer Correct ? | 4 Yes | 1 No |
how do you reference the variable unblock file formats from cobol programs
What is the difference between a binary search and a sequential search?
I have put two write operations in a single para for two different conditions.Will that lead to an abend or run successfully and write two records?
Have you code any new programs in COBOL ? What is the functionality of the programs?
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
what is meant by binary search?
WT R TECHNICAL MAINFRAME QUESTION ASKED IIN ANJANASOFTEARE??
input:- 12233344445555566666... output:- 1=1,2=4,3=9... Here firstno i.e 1 should be displayed and after that the alikeno.s should be added n displayed.i.e 2+2=4 like tat it goeson.
I have files that contains both duplicates files(occur more than twice) and non-duplicate files.The file is already sorted by a key.I want to determine those records that are duplicate and will be move to a duplicate file and non- duplicate files to be move to a valid file.thank you.help please
How To move a value to an array using move verb?
what is lrec=f,what is difference between f,fb,v,vb?what is default value?how do we came to know that records are in f,fb,v,vb?
I had 100 records and i want to execute last three records by using cobol programming?what will be coding?