what is the minimum number of lines a Cobol program should
have to successfully compile and run
Answers were Sorted based on User's Feedback
Answer / shailendra
only the first ans is right
(ans of anoop)
because in the question is mention the minimum line
required to compile and execute
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ravikumar. r
Identification division.
program-id. ABCDE.
Procedure division.
display 'abcd'.
stop run.
| Is This Answer Correct ? | 9 Yes | 6 No |
Answer / sivakumar sekharannair
IDENTIFICATION DIVISION.
PROGRAM-ID. TEST1.
are the minumum number of lines a cobol program should have
to successfully compile and run.
Without program id the compiler gave the following error
IGYDS1003-E A "PROGRAM-ID" paragraph was not found.
Total Informational Warning Error Sever
1 1
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / abzal
anoop is right,
bcoz question asked is min. lines of code,so anoop is
right.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / harish
hi i will accept both #1 and #2
#1 we will get compilation successful but in runtime
without procedure we may get some prob i am not sure
#2 answer is absolutely right buddy.....
pls correct me if anything wrong
HARISH POOMGAME SHIVAPPA(hassan,karnataka)
NIIT TECHNOLOGY
KOLKATA
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / guest
Milind , your answer is absolutely wrong .
If you compile yoru program - with a only"procedure
division - you will get belwo erros -
E A "IDENTIFICATION DIVISION" header was not found in
this program. It was assumed present.
E A "PROGRAM-ID" paragraph was not found. Program-
name "CBLNAM01" was assumed.
Otherwise - ans#1 andans#2 are absolutely
correct .
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / saravanan
#9 anjibabu answer is correct
In cobol program ID Division and procedure Division is mandontary.......
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / sagar lahulkar
I think four lines are required
Identification division
Progam I'd..
Procedure division
Display
| Is This Answer Correct ? | 0 Yes | 1 No |
Suppose i have a variable with s9(18)v99 comp3 . what is the size of variable . If s9(18) comp3 is 10 bytes . There should be some difference between two allocations ? Thanks krishna chaitanya
How can you add a particular field/coloumn in copybook?
) How do u handle errors in BMS macro?
a. Can the OPTIONAL clause in COBOL only be coded for input files? b. If it is coded for files opened in OUTPUT, I-O or EXTEND mode, will it give a compilation error? c. If there are no compilation errors and if such files are not coded in the JCL, will the OPEN statement run fine when these files are opened? d. How will a WRITE statement work for the above files?
What is difference between comp & comp-4?
01 ws-p pic 9(2). 01 ws-q pic 9(2) value 01. 01 ws-r pic 9(2) value 99. p.d. compute p = q + r what will be result of p ans(00) but my question is that how i got 10 on the place of 00. (truncation will ocuure on right side not left). please tell me ?
What should be the sorting order for SEARCH ALL?
study the data discriptions and answer the questions given below i)01 ORDER RECORD 05 OUT-HEADER PIC X(50) 05 ITEM-COUNT PIC 99 05 OUT-ITEM PIC X(20) OCCURS 1 TO 20 DEPENDING ON ITEM-COUNT ii)01 NAME-AND-ADDRESS 05 N-AND-A-LINE OCCURES 5 05 LINE-LENGTH PIC P9 05 N-AND-A-CHAR PIC X OCCURS 1 TO 20 DEPENDING ON LINE-LENGTH iii)01 SALES-LIST 05 SALESMAN-COUNT PIC 99 05 SALES PIC 9(6) OCCURS 1 TO 100 DEPENDING ON SALESMAN-COUNT iv)01 ORDER-RECORD 05 NO-OF-BRANDS PIC 99 05 BRAND-PURCHASED OCCURS 1 TO 15 DEPENDING ON NO-OF-BRANDS which of the following is true? a.i) and iii) are valid b.i) and iv) are valid c.i) and iii) are not valid d.all are valid
what is the minimum number of lines a Cobol program should have to successfully compile and run
11 Answers ABC, Societe Generale,
what is the difference between Normal vaiable and comp variable.
What are the differences between COBOL and COBOL II?
Name the divisions, which are available in a cobol program?