How will u give input data to cobol program apart from
PARM & Instream data?
Answers were Sorted based on User's Feedback
Answer / santy
u can give input data to cobol program in different ways,
1> using PRAM parameters,
2> Instream data(cobol programe takes value from JCL)
3> by using file.
Is This Answer Correct ? | 7 Yes | 2 No |
Answer / siva
By using control cards.
This is a simple PS file or a member of PDS
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / poonam
1> using PRAM parameters,
2> Instream data(cobol programe takes value from JCL)
3> by using file.
4> by using accept , we can put data from keyboard
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / mdvasanth86
1.PARM
2.INSTREAM ( SYSIN DD * )
3. FILE
4. DATABASE
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sridharreddy
Hi friends,
We can pass the data to the cobol program through
the jcl dd statement
//DD SYSIN *
we pass data after this statement.
Is This Answer Correct ? | 2 Yes | 3 No |
How to resolve SOC4 & SOC7 errors?
Explain a linkage segment
Explain foreign keys?
State all the file open modes?
whose product is x-peditor ?
HOW to change the coloumns in XREF?
Explain index cardinality?
IF a file has 10-members how do you process all of them? using CL& USING RPG?
What is the maximum value that can be stored in s9(8) comp?
pic S9(4) results 3 bytes1 A) comp B) comp1 C) display D) comp3
Total no of bytes in the following 01 rec-1 02 first-group 03 a1 pic x(4). 03 a2 pic 99. 02 second-group redefines first-group. 03 A3 pic999. 03 A4 pic 999. 02 third-group. 03 A5 occurs 5 times pic 99. A)22 B)16 C)12 D)10
Which is the difference between delimited by size and delimited by space?