What is the difference between binary search and sequential search?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different open modes available in cobol?
How To Separate The Numerics From An Alphanumric Data Item Which Contains Both Alphabates And Numerics ?
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
01 a pic x(6) value is abcdef 01 b pic x(3) move a to b wht will be the value in b ?
Can we use icetool in cobol program?
How to Pass table from a cobol program to another cobol program and how to use that table in called program
What is the difference between CONTINUE & NEXT SENTENCE ?
How to display the index.(displacement from an array)
BY seeing a program how can we say that it is static call or dynamic call
Size of a column has been changed in DB2 table (Suppose it was of 5 characters and later changed to 4 characters) and forgot to change the DCLGEN in COBOL program, what will happen during the execution of code? If the program Abends then what will be the error? If it doesn't abend then hpw the error can be catched?
consider two data items 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
Please let me know how the Eject verb works for page break.. I want to know the code, how it is used.