Inhaltsverzeichnis

Loading ⌛Loading ⌛

📚 Repetition Logik-Schaltungen

✍ Auftrag

Loading ⌛

  1. Repetiere die folgenden logischen Grundschaltungen. Klicke dazu auf die Eingänge der interaktiven Schaltungen und vergleiche mit den Wahrheitstabellen.
  2. Markiere danach diesen Auftrag als „Erledigt“.

Schalter (und Anzeige)

Interaktive Schaltung Wahrheitstabelle Symbole aus logic.ly online Programmieren
Loading ⌛
a | o
------
0 | 0
1 | 1
Wahrheitswerte: true, false
Beispiel:
if (mouseIsPressed) {
  ...
}

NOT

Interaktive Schaltung Wahrheitstabelle Symbol aus logic.ly online Programmieren
Loading ⌛
a | o
------
0 | 1
1 | 0
Operator: !
Beispiel:
 if (!mouseIsPressed) {
  ...
}

AND

Interaktive Schaltung Wahrheitstabelle Symbol aus logic.ly online Programmieren
Loading ⌛
a | b | o
----------
0 | 0 | 0
1 | 0 | 0
0 | 1 | 0
1 | 1 | 1
Operator: &&
Beispiel:
if (x>20 && x<80 ) {
  ...
}

OR

Interaktive Schaltung Wahrheitstabelle Symbol aus logic.ly online Programmieren
Loading ⌛
a | b | o
----------
0 | 0 | 0
1 | 0 | 1
0 | 1 | 1
1 | 1 | 1
Operator: ||
Beispiel:
if (x<20 || x>80) {
  ...
}

Eigene Notizen

Loading ⌛