What is the difference between a binary search and a sequential search what are the pertinent cobol?
What is the difference between NEXT SENTENCE and CONTINUE?
how to submit a jcl by cobol program. clear me with an example.
What are the divisions in a cobol program? Which one is the mandatory division among them?
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 get the result of your program directly on your pc?
What is the difference between next sentence and continue in cobol programing language?
how do u link sub pgm to main pgm ?
I have a PS file and I would like to manually insert the binary values (like a COMP format) into the file. How can i do that? the way do in COMP-3 format.. suppose i want to insert -12345 in to file in comp-3 format. simply we can open a file in edit mode and do HEX-ON and insert the value . SEE BELOW-- 135 24D in 3 bytes - this will be COMP-3 presenatation of -12345.
describe 805 error
How do u sort the table for Search ALL? Is it only using ASCENDING KEY IS statement in occurs clause? If the data is input in non ascending order, will the ASC KEY IS automatically sort the data? or will it throw compile time error?
What is the difference between working storage copybook and linkage section copybook?
When and how can we use index & subscript ?