answersLogoWhite

0


Best Answer

It represents one of the two specified logic levels. These are of course 1 & 0. In the electrical world both of these represent specified low voltage levels. ie 1 might represent a voltage level of +5v & 0 -5v. So in this example in the truth table for a particular senario 0 stands for -5v.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does 0 stand for in truth table?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which is not a gate?

Its truth table is: input output 0 1 1 0


What is the truth table of a inverter?

Input Output 0 1 1 0


When using a truth table 1 and 0 equal?

1 and 0 equal 0. "AND" behave like multiplication.


Make a truth table for the statement if p then not q?

. p . . . . . q. 0 . . . . . 1. 1 . . . . . 0


Draw truth table for AND OR Not?

.....0 10 | 0 01 | 0 1.....0 10 | 0 11 | 1 10 | 11 | 0


When a Boolean function said to be a self dual?

apparently whenever you can swap the 0's for 1's and 1's for 0's in the truth table and the truth result remains unchanged.


Define a truth table?

A truth table is usually a table in which the truth or falsehood of two variables are taken as input and these form the edges of the table. The content of the table shows the truth value of the result of some operation on the variables.


What is the difference between NA ND gate and NOR 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.


Difference between truth table and excitation table?

truth table contains inputs and excitation table takes outputs as inputs


What is the Truth table of logical operators in c plus plus?

It is the very same in every programming language. For example: AND: 0 && 0 = 0 0 && 1 = 0 1 && 0 = 0 1 && 1 = 1


Verify truth table of NAND gate using C programming?

I don't really know what this is supposed to mean, if you want to print the truth-table of the NAND-gate that will be something like this: for (a=0; a<=1; ++a) for (b=0; b<=1; ++b) printf ("%d %d %d\n", a, b, !(a&&b))


Why is the and gate called the and gate?

Because if input A *and* input B is true, then the output is true! Truth table of AND gate: ┌─┬─╥───────┐ │A│B║Q (Output)│ ├─┼─╫───────┤ │0│0║0..............│ ├─┼─╫───────┤ │0│1║0............. │ ├─┼─╫───────┤ │1│0║0............. │ ├─┼─╫───────┤ │1│1║1............. │ └─┴─╨───────┘