Lernpfad:Digitale Schaltungen/3: Unterschied zwischen den Versionen

Aus Informatik-Box
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 2: Zeile 2:


{| class="wikitable text-center code logictable"
{| class="wikitable text-center code logictable"
! A !! B !! o<sub>1</sub>
! i<sub>1</sub> !! i<sub>2</sub> !! o<sub>1</sub>
|+ UND
|+ UND
|-
|-
Zeile 15: Zeile 15:


{| class="wikitable text-center code logictable"
{| class="wikitable text-center code logictable"
! A !! B !! o<sub>1</sub>
! i<sub>1</sub> !! i<sub>2</sub> !! o<sub>1</sub>
|+ ODER
|+ ODER
|-
|-
Zeile 28: Zeile 28:


{| class="wikitable text-center code logictable"
{| class="wikitable text-center code logictable"
! A !! o<sub>1</sub>
! i<sub>1</sub> !! o<sub>1</sub>
|+ NICHT
|+ NICHT
|-
|-
Zeile 39: Zeile 39:
<lückentext>
<lückentext>
{| class="wikitable text-center code logictable"
{| class="wikitable text-center code logictable"
! A !! B !! o<sub>1</sub>
! i<sub>1</sub> !! i<sub>2</sub> !! o<sub>1</sub>
|+ UND-NICHT
|+ UND-NICHT
|-
|-

Version vom 4. September 2020, 09:16 Uhr

i1 i2 o1
UND
0 0 0
1 0 0
0 1 0
1 1 1
i1 i2 o1
ODER
0 0 0
1 0 1
0 1 1
1 1 0
i1 o1
NICHT
0 1
1 0


i1 i2 o1
UND-NICHT
0 0 1()
1 0 1()
0 1 1()
1 1 0()