What are the pertinent COBOL commands?
No Answer is Posted For this Question
Be the First to Post Answer
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
Wat is the difference between NEXT and CONTINUE statement in cobol,can any one explain with example.
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
how we rectify soc4 and soc7 error in project(need real time answer)? please reply
What are the divisions in a cobol program?
What is the different between index and subscript?
BY seeing a program how can we say that it is static call or dynamic call
what is s000 u4087 error? please give the all error codes in cobol,jcl.
what is redefines? where it can be effectively use for the purpose of memory utilization? give an example?
how do you reference the variable unblock file formats from cobol programs
If you were passing a table via linkage, which is preferable - a subscript or an index?
Consider the below example call a-test1. -- -- -- a-test1. if a=b perform a-test through a-exit next sentence else if b=c perform c-test through c-exit. if a=d perform d-test through d-exit. a-test. -- -- a-exit. exit. can u tell me what will happen if a=b after looping into a-exit will the control go back to a- test1. will the condition a=d be checked???