Avid is just to prepare you for advanced classes, and college.
Gate, well you already have it and have a better chance than someone in Avid
Chat with our AI personalities
The difference is in their truth tables.AND gate: The output is true when inputs 'A' AND'B' are both true.A | B | Output0 | 0 | 00 | 1 | 01 | 0 | 01 | 1 | 1OR gate: The output is true when either input 'A' OR input 'B' is true.A | B | Output0 | 0 | 00 | 1 | 11 | 0 | 11 | 1 | 1
In a circuit board, either an AND gate or an OR gate has two inputs and one output. For example, let's call the inputs A and B--these are wires that, at a given time are either hot (have electric current) or cold (have no current). Let's call the output C; it is either hot or cold depending on the gate and the inputs at the time. If the gate is an AND gete, C will be hot only when both A and B are hot. If the gate is an OR gate, C will be hot if either A or B or both are hot.
i think 4
Well, if you mean to make the truths of an AND gate similiar to the ones of OR gates, then you can do the following: 1. Put an inverter at every input of the AND gate. This will make it act like an NOR gate 2. Put an inverter at the output of the gate. This will invert the truths and turn the NOR gate into an OR gate
Truth table of 'NAND' is 0 0 - 1 0 1 - 1 1 0 - 1 1 1 - 0 NAND is just opposite of AND as the name itself suggest NAND is the not of AND Truth table of "NOR" is 0 0 - 1 0 1 - 0 1 0 - 0 1 1 - 0 NOR is just opposite of OR as the name itself suggest NOR is the not of OR.