Level/AND Gate: Difference between revisions

From Turing Complete
m (2 revisions imported: Imported from https://strategywiki.org/)
(Added infobox)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Header Nav|game=Turing Complete}}
{{Header Nav|game=Turing Complete}}
{{Infobox level
| section            = Basic Logic
| type                = Component
| prerequisite1      = NOT Gate
| unlocks-level1      = Always On
| unlocks-component1  = AND
| api-enum-id        = and_gate
| api-enum-number    = 6
}}


This level has you create the AND Gate.
This level has you create the AND Gate.


{| {{Prettytable}}
{| {{TruthTable}}
|+ AND Gate Truth Table
|+ AND Gate Truth Table
|-
|-
! Input One !! Input Two !! Output
! Input 1!! Input 2!! Output
|-
|-
| {{No}}|| {{No}}|| {{No}}
| {{Off t}}|| {{Off t}}|| {{Off t}}
|-
|-
| {{No}}|| {{Yes}}|| {{No}}
| {{Off t}}|| {{On t}}|| {{Off t}}
|-
|-
| {{Yes}}|| {{No}}|| {{No}}
| {{On t}}|| {{Off t}}|| {{Off t}}
|-
|-
| {{Yes}}|| {{Yes}}|| {{Yes}}
| {{On t}}|| {{On t}}|| {{On t}}
|}
|}



Latest revision as of 23:52, 1 September 2024

Section Basic Logic
Type Component
Prerequisite NOT Gate
Unlocks Always On
AND
Scored No
API and_gate (6)

This level has you create the AND Gate.

AND Gate Truth Table
Input 1 Input 2 Output
0 0 0
0 1 0
1 0 0
1 1 1

To solve this level, place one NAND gate and put a NOT gate on the output.