what is the minimum number of lines a Cobol program should
have to successfully compile and run
Answer Posted / vijay
technically it is mentioned a flow chart to compile the
cobol programming so i prefers that 4 lines.
IDENTIFICATION DIVISION.
PROGRAM-ID. VIJAY.
ENVIRONMENT DIVISION.
PROCEDURE DIVISION.
DISPLAY ' ALL THE BEST FOR YOUR BRIGHTEST FEATURES'
STOP RUN.
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
Write the code to count the sum of n natural numbers.
Can we change the password using ALTER? anyone tried and changed?
What is the difference between perform … with test after and perform … with test before?
What is link edit in cobol?
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
What are the pertinent COBOL commands?
Write a cobol program making use of the redefine clause.
Write a program to enter and display the names of students in a class using the occurs clause.
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
explain sorting techniques in cobol program?
What is the utilization of copybook in cobol?
How do define dynamic array in cobol.
Explain about different table spaces.
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?