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
Answer Posted / rama
b
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is difference between static and dynamic call in cobol?
What is the difference between external and global variables in COBOL?
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
Explain how you can characterize tables in cobol?
how can i see junk values in dclgen or in hostvariable of comp ?
Name some of the examples of COBOl 11?
What rules are followed by the search verb.
Define cobol?
What is link edit in cobol?
How do we get current date from system with century in COBOL?
) How do u handle errors in BMS macro?
What is report-item in COBOL?
Write the code to count the sum of n natural numbers.