cirsim
Version:
Cirsim Circuit Simulator
11 lines (10 loc) • 443 B
HTML
<p>The output of a two-input AND gate is <em>true</em> if both inputs are true.</p>
<figure><img src="img/and.png" width="286" height="146" alt="AND Gate"></figure>
<h3>Truth Table</h3>
<table class="truth-table">
<tr><th>A</th><th>B</th><th>O</th></tr>
<tr><td>0</td><td>0</td><td>0</td></tr>
<tr><td>0</td><td>1</td><td>0</td></tr>
<tr><td>1</td><td>0</td><td>0</td></tr>
<tr><td>1</td><td>1</td><td>1</td></tr>
</table>