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 rules are followed by the search verb.
What are the rules of the move verb?
What are the pertinent COBOL commands?
What is the difference between PIC 9.99 and PIC9v99?
Write a program to enter and display the names of students in a class using the occurs clause.
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
What is the compute verb? How is it used?
What are the different rules of SORT operation?
Write down the divisions of cobol program?
What is redefines clause in COBOL?
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
What are the different open modes available in cobol?
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
What is the difference between a binary search and a sequential search what are the pertinent cobol?