1.give the details about WHEN OTHER.
2. how many form are available in evaluate.
No Answer is Posted For this Question
Be the First to Post Answer
Can you REWRITE a record in an ESDS file? Can you DELETE a record from it?
6 Answers ABC, IBM, Mphasis, Wipro,
What is the linkage section?
Can we move SPACES to numeric field and ZEROES to alphabetic field? If yes what are the way doing this?
What will happen if you code GO BACK instead of STOP RUN in a stand-alone COBOL program i.e. a program which is not calling any other program ?
IF I mention stop run in CICS what happens?
01 ws-p pic 9(2). 01 ws-q pic 9(2) value 01. 01 ws-r pic 9(2) value 99. p.d. compute p = q + r what will be result of p ans(00) but my question is that how i got 10 on the place of 00. (truncation will ocuure on right side not left). please tell me ?
What is different between variable length and fixed length?
What is the file organization clause ?
What are the ways you can generate a copybook?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
using redefine can you redefine lower variable size to higher variable size?
01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?