A paragraph PARA-X is to be executed when none oof 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

This question is related to TCS Interview

Showing Answers 1 - 3 of 3 Answers

Jeeva

  • Dec 13th, 2006
 

      Since the variable a,b,c should not hold value 1 Answer is
      IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X .

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions