Monday, September 6, 2010

Question>
A rocket has to be launched in d orbit of Jupiter, the dead load of the rocket comprises of 2 draft weights x and y ; to put the rocket in proper path the dead loads have to dropped , only if both of them are dropped at the same instant of time the rocket will attain the proper direction other wise it will put the rocket into spin. Implement the given logic behind this question using as logic gate.
(Manpreet)

11 comments:

  1. it can be implement with AND gate
    x y o?/p
    0 0 0
    0 1 0
    1 0 0
    1 1 1
    it means only if both are dropped it will the proper direction

    ReplyDelete
  2. oops... i typed it wrongly "it will attain the proper direction

    ReplyDelete
  3. i think it is the application of the basic NOR gate
    0 0 1
    1 0 0
    0 1 0
    1 1 0

    ReplyDelete
  4. It can be the application of a NOR gate

    ReplyDelete
  5. We think that its EX-NOR,Because on spinning only one input should be high and other should be low(assigned as '0'),for proper direction
    cases are 0,0 and 1,1.and output is high.hence we hope it will suit better.(benjamin-Nidhin)

    ReplyDelete
  6. It is a simple application of basic NOR gate truth table. When ever the output is 1 we have to take it into account.

    ReplyDelete
  7. It can be the application of a NOR gate

    ReplyDelete
  8. basically NOR gate is used b'cos in nor gate, even when the output is 1 we have to take it in to the consideration.

    ReplyDelete