waht is inspect verb? where it can be in real time?
Inspect is use to count the occurrences of a character in a
string & replace the char or sub-string in a string.....ect..
In real time if u do any mistake in entering data like
account no....524000200 rather then 542000200
by using Inspect U can achieve it easily ......
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the difference between binary search and sequential search?
give the examples for strings and unstrings in cobol
2)Where the Plan is located in CICS-DB2?
If a file has 1000 records.. if i have to replace the first and last characters of the file with another character. how it can be done....
wht is packed decimal in cobol
HOW TO MOVE REDEFINES CLAUSE FROM INPUT TO OUTPUT ?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
Under which scenario you would go for a static call as opposed to dynamic call?
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
How many sections are there in data division in COBOL?
given the following piece of code: CALL SUB-PGM USING A, B, C. CALL SUB-PGM USING A, C, C. (a) Both CALL statements will always produce same result. (d) Both CALL statements may produce different result. (c) Compile-time error because SUB-PGM is a dataname. (d) Compile-time error because A, B, C are used twice.
Consider the following: 77 W-NUM PIC 9 VALUE 0 ------ MOVE 1 TO W-NUM PERFORM PARA-X UNTIL W-NUM > 9. ------ PARA-X ADD 1 TO W-NUM How many times PARA-X is executed ?