In a COBOL II PERFORM statement, when is the conditional
tested, before or after the perform execution?
Answers were Sorted based on User's Feedback
Answer / shubha
here Before is default,but if After is mentioned then
condition will be checked after perform execution.
Is This Answer Correct ? | 13 Yes | 0 No |
what is a zoned decimal data type and how it will be stored?
i have a variable block which is used in my cobol program as input file having records of 4080 after compilation while runing the program im getiing file attribut mismatch and it is saying tht the record length of the file is 4084 can any one knw the answer how to reslove it ?
How to resolve the soc4 and soc7 errors?
what is the basic concept of mainframe? what knowledge is needed for learn this mainframe?
01 a pic s9(5) value -12345, if we disply a , the sign will overpunched with last digit but i need to get the miuns sign in the result?
what happens if we dont close cursor in db2-cobol pgm?
Write some characteristics of cobol as means of business language.
i friends greetings to the day...!!! I face a quation like"while runnig the programe every day i have to access the previous day updates only...!! Ex:- Let last day 100 customers took bank account i have to select those customers only.."
What is Control Break processing ?
how many bytes does a s9(12)COMP-4 field occupy?? a.2 b.4 c.8 d.1 ans with reason please
How many maximum number of procedures can we write in one COBOL program?
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(9) VALUE SPACES. 01 WS-VARN REDEFINES WS-VARX PIC 9(9).