Give example of Inspect TALLYING / BEFORE INTIAL / AFTER INITIAL. In which situation will use this in COBOL?
Latest Answer: 01 my_string pic x(30) value 'mainframeinterviews'.we can have operations on the string like inspect my_string tallying tally_ct for all e before intial s and after intial i.inspect my_string replacing all e by r before intal s and after intial ...
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?
Latest Answer: In this time it will respond to the COBOL program and we can successfully write in the old source program. ...
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
Latest Answer: This is the way we can avhieve this1. Read file12. Copy key3. Open file24. Read file2 with the key5. Write the o/p file36. Close file27. Read fle1 next record8. Perform steps 2 to 7 till end of data base ...
Which one of the following COPY statement is correct?1) COPY COPYFILE REPLACE ==PRE-== ==WK-==2) COPY COPYFILE REPLACING =PRE-= =WK-=3) COPY COPYFILE SUPPRESS4) COPY REPLACING ==PRE-== ==WK-== IN COPYFILE5)
Latest Answer: Correct answer is: 2) COPY COPYFILE REPLACING =PRE-= =WK-= ...
What are the four divisions in COBOL
Latest Answer: The 4 Divisions are,Identification Division.Program-Id. Author.Date Compiled.Security.Environment Division.Configuration Section.Source Computer.Object Computer.IO Section.IO control.File Control.Data Division.File Section.Working-storage Section.Linkage ...
What is the difference between INSPECT & EXAMINE?
Latest Answer: Both are same meaning one is used in Cobol-II other in Cobol-I. According to syntax INSPECT identifire-1 TALLYING identifier-2 FOR ALL identifire BEFORE identifire. REPLACING LEADING ...
Give example of Inspect TALLYING / BEFORE INTIAL / AFTER INITIAL. In which situation will use this in COBOL?
We have different type of Inspect verb1.counting INSPECT.2.replacing INSPECT.3.combined INSPECT.4.converting INSPECT.Give example of any Inspect verb which you know.
Latest Answer: Usually in COBOL the subroutines are compiled and linked to the load module at the time of compilation and if we are calling the subroutine only a few times, then may not worth keeping in the memory unnecessary. This is known as STATIC CALL. So COBOL ...
Normally we are using Dynamic call. What will happen when COBOL program compilation & execution.
Latest Answer: Link edit is the process of linking of object codes of similar programs to form a single executable load module.Linkage of object codes of mainprogram and subprogram is done during execution.  ...
How COBOL FLAT files(Index,Sequential) are very secure for huge data?If not, How will you migrate with any Database with Frond end COBOL?
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top