what is the minimum number of lines a Cobol program should
have to successfully compile and run
Answer Posted / anjibabu
in #2 no need to use display statement.
IDENTIFICATION DIVISION.
PROGRAM-ID. A.
PROCEDURE DIVISION.
STOP RUN.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the difference between next sentence and continue in cobol programing language?
Explain how to differentiate call by context by comparing it to other calls?
what is the difference between COBOL2 AND COBOL390?
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?
Which is not true about evaluate statement
What are the different rules to perform a Search?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
What is the compute verb? How is it used?
i want a program using by if, evaluate , string, unstring, perform, occurs?
What is difference between static and dynamic call in cobol?
Difference between array and sub-script ?
What is the difference between perform … with test after and perform … with test before?
What is the use of intialize verb?
Write the code to count the sum of n natural numbers.