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 |
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
What care has to be taken to force program to execute above 16 Meg line?
What are options have been removed in COBOL 11?
WT R TECHNICAL MAINFRAME QUESTION ASKED IIN ANJANASOFTEARE??
hi. This is Ram.i have one doubt.why can't we display comp-3 variables directly? let me answer quickly plez........
What will happen if we generate GDG +2 version instead of +1 version?
What are the different ways to run a COBOL DB2 program using JCL?
Have you code any new programs in COBOL ? What is the functionality of the programs?
there is a file whose ORGANISATION is INDEXED.you want to read the records from the file in RANDOM fashion as well as sequentially.then which of the access mode would you specify? a.SEQUENTIAL b.RANDOM c.DYNAMIC D.ACCESS MODE has nothing to do with it
C1 C2 C3 are three conditions whose TRUTH values are as folloes. C1-TRUE C2-FALSE C3-TRUE A,B,C are defined as given below A:C1 AND(NOT C2) OR C3 B.(NOT C1) OR (NOT C2 AND NOT C3) C.(C1 OR C2)AND C3 D.C1 AND C2 OR C3 given the above information which of the following statements are valid? a.only A,B and C are TRUE b.only A,C and D are TRUE c.A,B,C and D are TRUE d.only C and D are TRUE
What the difference is between continue and next sentence?
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250