-
-
COBOL dynamic call and static call
What is difference between dynamic call and static call with examples ..?
-
What is Load module & Link edit and How will it work Dynamic call?
Normally we are using Dynamic call. What will happen when COBOL program compilation & execution.
-
Impact Analysis
Suppose a program has one i/p file and one o/p file now we want to add another file to the Cobol program and also two new fields (i.e columns) are added to the o/p file from the new i/p file then how will you do impact analysis.
-
File Concept
The Disposition Parameter in the JCL is Share ( DISP=SHR ) and Cobol program opens file in " Extend " mode. In this scenarion what will happen to that file?
-
-
Usage of copy statement in Cobol
Hi,
Can any one tell how to use copybook in COBOL, and please explain with file structure(means i am using 5 fields of file and i want to declare them in copybook and and i want use it in COBOL programming)
-
Prime number in COBOL
Culd any body tell the concept for the prime number programe?
-
How to separate to multi-field?
For example:
01 something PIC X(06).
01 one PIC 9(02).
01 two PIC 9(02).
01 three PIC X(02).
SELECT socket(:number)
INTO :something
FROM DUAL
result:
something = 1234ww
one = 12
two = 34
three = ww -
EMail Validation via COBOL
I have file with customer details and I need to process only those records who is having valid email id, so how we can validated these records using COBOL?
-
What is the difference between a subscript and an index in a table definition?
A subscript is a working storage data definition item, typically a PIC (999) where a value must be moved to the subscript and then incremented or decremented by ADD TO and SUBTRACT FROM statements. An index is a register item that exists outside the program's working storage. You SET an index to a value and SET it UP BY value and DOWN BY value.
-
1) Without execution cobol program how to see output?2) how to rename input filename and outputfile name?3) what is flag?4) what is impact analysis what basis how will you write test cases?5) how you sea output of cics command?6) how are datasets concatenated explain with example?
I don't know please give me answer
-
-
-
-
-
C1 C2 C3 are three conditions whose TRUTH values are as follows.
C1-TRUE C2-FALSE C3-TRUE A,B,C are defined as given below
A:C1 AND(NOT C2) OR C3
B.(NOT C1) OR (NOT C2 AND NOT C3)
C.(C1 OR C2)AND C3 D.C1 AND C2 OR C3
given the above information which of the following statements are valid? a.only A,B and C are TRUE
b.only A,C and D are TRUE
c.A,B,C and D are TRUE
d.only C and D are TRUE -
What is an in line PERFORM? When would you use it? Anything else to say about it?
The PERFORM and END-PERFORM statements bracket all COBOL II statements between them. The COBOL equivalent is to PERFORM or PERFORM THRU a paragraph. In line PERFORMs work as long as there are no internal GO TOs, not even to an exit. The in line PERFORM for readability should not exceed a page length - often it will reference other PERFORM paragraphs.
-
-
COBOL Interview Questions
Ans