What is the maximum size of a 01 level item in COBOL I? in
COBOL II?
Answers were Sorted based on User's Feedback
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
How can you get the ksds file records into your cobol program?
How do define dynamic array in cobol.
The disposition parameter in the jcl is share ( DISP+SHR ) and the program opens file in extend mode what will happen?
for an INITIALIZE and what keyword allows for an override of the default.
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 are INPUT PROCEDURE and OUTPUT PROCEDURE?
where do we use dyanamic call ? and where do we use static call pls give any example pls ?
What is the difference between a binary search and a sequential search?
what will happen if i give program name and member name as different? program runs successful or w'll abend?
What is LENGTH in COBOL II?