How may divisions are there in JCL-COBOL?
Answers were Sorted based on User's Feedback
Answer / seema gulia
IDENTIFICATION DIVISION
ENVIRONMENT DIVISION
DATA DIVISION
PROCEDURE DIVISION
Is This Answer Correct ? | 36 Yes | 0 No |
Answer / vampire
Identification division
program-id
author
installation
date written
date completed
security
Environment division
configuration section
source computer
object computer
special characters
I/o section
file control
Data division
linkage section
report section
message/communication section
screen section
working storage section
file section
Procedure division
plz correct me if i m wrong
Is This Answer Correct ? | 15 Yes | 0 No |
Answer / ash
4
Procedure Division
Env Division
Data Division
Procedure division
Is This Answer Correct ? | 5 Yes | 23 No |
how we separate the cobol cics statements from cobol&cics programming?
What is the difference between CALL BY VALUE and CALL BY CONTENT?
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
how to transfer the file from pc to mainframe??
what are the steps to sort in a cobol program?
How to Write the RESTART Logic Using COBOL?
4 Answers GalaxE, L&T, Syntel, TCS,
how to know that the file has 300 records how to acess it?
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
What is CALL statement in COBOL?
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.
How can I find the maximum value of a field in a file while reading the file dynamically? without using sort function. Suppose i have a file with fields Timestamp, description, teamname, teamnumber.. i have read the file till end and find the maximun value of timestamp which is not in sorted order.. can we use function max(timestamp)?
how will you define vsam file in select clause?