What the difference is between continue and next sentence?
No Answer is Posted For this Question
Be the First to Post Answer
diffrence between renames and redifnes with examples
In COBOL programming, what is PERFORM? What is VARYING?
How is sign stored in Packed Decimal fields and Zoned Decimal fields?
give the examples for strings and unstrings in cobol
what is a load module ?
I have a Flat file in which certain records are present in a tabular format. I need to extract some of the records on some basis from it and copy them into a flat file...how it can be done ??
what is the difference between implicit and explicit scope terminator with example?
How can I tell if a module is being called DYNAMICALLY or STATICALLY?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
CAN ANY ONE HELP WHAT IS QTP? why it is nessery AND WEN IT IS USED?
How to retrive the 9th records out of ten records using the cobol program ?
How can we find out wether to declare the data items like Integer, Char,Comp? If comp types how can we decide wether it is Comp and Comp3.How it is? Please Explain... Cheers.