The hierarchy of the execution of logical operators is
(a) NOT AND OR
(b) AND OR NOT
(c) OR AND NOT
(d) OR NOT AND

Answers were Sorted based on User's Feedback



The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / vijay

a

Is This Answer Correct ?    38 Yes 4 No

The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / srinivas.dappili

Hi Santhi,

This is good Question.

THE ANS: IS NOT AND OR.

I am listing precedence order and also the link where u can
Found the relevant details


The operators and their precedence order from highest to
lowest are:
• Navigation operator ( . )
• Arithmetic operators in precedence order:
o + - unary
o * / multiply, divide
o + - add, subtract
• Comparison operators: =, >, <, >=, <=, <>(not equal)
• Logical operator NOT
• Logical operator AND
• Logical operator OR

http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.websphere.express.doc/info/exp/ae/cque_express.html

Is This Answer Correct ?    9 Yes 0 No

The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / milan kumar

Hierarchy is NOT,AND,OR.hierachy is a).however i'm not sure
wheather compiler will treat it in order they present(most
probable) or will follow the hierarchy if all logical
operators are present in one statement.if i'm wrong plz
scrutinize it..plz post your answer if any one 've tried it
already.....it's a smart question...

Is This Answer Correct ?    7 Yes 2 No

The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / guest

a) not and or

Is This Answer Correct ?    5 Yes 0 No

The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / nihal

it is A

Is This Answer Correct ?    4 Yes 0 No

The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / amol

a

Is This Answer Correct ?    3 Yes 0 No

The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / ritesh

a

Is This Answer Correct ?    6 Yes 5 No

The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / venkata revanth arla

not,and ,nor according to the precedence order

Is This Answer Correct ?    0 Yes 0 No

The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / basha

b

Is This Answer Correct ?    5 Yes 7 No

The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AN..

Answer / arunabh

c

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More COBOL Interview Questions

Minimum how many Number of Paragraphs are there in ID- Divison?

7 Answers   IBM,


How can you submit a job from COBOL programs?

2 Answers   ITC Infotech,


Consider the following: 77 A PIC 9(10) 77 B PIC 9(10) 77 C PIC 9(19) MULTIPLY AB BY B GIVING C Which of the following is true ? (a) The execution of the above may result in size error. (b) The execution of the above will result in size error. (c) The definition of C is invalid resulting in compilation error. (d) No error will be thee and the program would proceed correctly.

4 Answers   TCS,


What are the different rules to perform a Search?

0 Answers  


I have PS flat file with 14 records. I want to read from 4th to 9th record and want to write those 6 records (4th record to 9th record) to another PS file (output file). there is no key defined in the input file. I just want read a certain Consecutive records. can any one please give me the procedure division Coding for this. I have coded the below coding but the READ-PARA is performing only 1 time even though I have 14 records in my input file (i.e FILE-1): PROCEDURE DIVISION. A000-SECTION. MOVE 0 TO I. OPEN INPUT FILE-1. IF CHECK-KEY1 > 0 DISPLAY "OPEN ERROR FOR FILE-1, CODE IS:" CHECK-KEY1 END-IF. OPEN EXTEND NEWFILE-1 IF CHECK-KEY3 > 0 DISPLAY "OPEN ERROR FOR NEWFILE-1 COD IS" CHECK-KEY3 END-IF. PERFORM READ-PARA THRU EXIT-PARA UNTIL EOF-REC = 'YES'. DISPLAY " FINALLY OUT OF LOOP" CLOSE FILE-1 CLOSE NEWFILE-1 STOP RUN. READ-PARA. ADD 1 TO I READ FILE-1 AT END MOVE 'YES' TO EOF-REC IF I > 3 AND < 10 PERFORM WRITE-PARA ELSE DISPLAY "NOT IN RANGE" END-IF. EXIT-PARA. EXIT. WRITE-PARA. WRITE NEW-REC FROM FILE1-REC.

8 Answers   IBM,






wht is load module and object module ?

2 Answers   DELL, TCS,


What is the usage of comp fields in cobol?

0 Answers  


What is the difference between structured cobol programming and object alternativelyiented cobol programming?

0 Answers  


I have a seq file with different fields one field is address with pic x(50) as input in a cobol program. In address there is 'PUNE' at any different positions in the address field ( form 1 t0 50) . My requirement is select the fields with address 'PUNE' by using cobol. Please suggest

2 Answers   IBM,


What is the difference between a DYNAMIC and STATIC call in COBOL?

2 Answers  


Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?

0 Answers  


Write a program to explain size error.

0 Answers  


Categories