A paragraph PARA-X is to be executed when none of the data names
A, B and C have value of 1. Which of the following will
achieve this ?
(a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X
(B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X
(C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X
(C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
Answers were Sorted based on User's Feedback
Answer / vel
Answer is d. b is wrong as 'NOT' priority is Higher
than 'AND', 'NOT' will be assigned with A alone.
| Is This Answer Correct ? | 14 Yes | 0 No |
How to find whether a Flat file is empty or not without Reading a file in COBOL Program. (not using JCL)
in cobol perform stmt whether it first checks the condition or not
should I use Go back in the main program ? Yes we can use Go back in main program as well.
what is the advantage of using redefines instead of delaring the variables ?
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
what is sysncpoint?
What was removed from COBOL in the COBOL II implementation?
what is the purpose of linkage section?
What the difference is between continue and next sentence?
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error
Whats the use of Examine command? can someone help me?
What do you understand by psb and acb?