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 / kaal

D IS THE CORRECT ANS

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What happens when we move a comp-3 field to an edited (say z (9). Zz-)?

777


Program A (Normal COBBAT) calling a B Program (DB2COBOL, COBBATDB which is using a VSAM file. its a dynamic call. How we will handle VSAM file decleration in our from JCL from where we are running A PGM. And should we have PLAN for A pGM also. if possible can some one post a sample JCL. Thanks for help in advance.

5061


Name the divisions, which are available in a cobol program?

685


can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there

1845


Write the code implementing the perform … varying.

644






How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?

648


There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.

932


Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.

2058


What is the difference between comp and comp-3 usage?

678


Discuss about changing dataset name in proc.

759


i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this

996


I have a File that has duplicate records. I need only those records that occur more than thrice.?

8652


I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue

1931


How do we get current date from system with century in COBOL?

805


I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......

10608