2.4 Computational Logic Flashcards

1
Q

Logic Gates

A

Fundamental components used in circuits that take input(s) and produce output based on certain conditions (AND, OR, NOT).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

NOT Gate

A

A logic gate that inverts the input value. If the input is 1, the output is 0, and vice versa.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

AND Gate

A

A logic gate that produces an output of 1 only when both inputs are 1. Otherwise, the output is 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

OR Gate

A

A logic gate that produces an output of 1 if at least one input is 1. The output is 0 only when both inputs are 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Truth Table

A

A table used in logic to represent all possible combinations of inputs and their corresponding outputs for a logic gate.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Computing Related Mathematics

A

Mathematical operations used in computing such as addition (a + b), subtraction (a - b), multiplication (a * b), and division (a / b).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

MOD (Modulo)

A

The remainder when one number is divided by another. For example, 7 MOD 3 = 1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

DIV (Integer Division)

A

Division of two numbers where the result is rounded down to the nearest integer. For example, 7 DIV 3 = 2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Exponentiation

A

Raising a number to a power, denoted by a number raised to the exponent. For example, a^b means ‘a’ raised to the power of ‘b’.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Interpreting Logic Gate Diagrams

A

Reading and understanding logic gate diagrams that represent logical expressions, such as (A AND B) OR (NOT C).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Binary Numbers

A

A system of numbers that use only 0s and 1s to represent data in computing, where each digit is called a bit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Input Combinations

A

All possible combinations of input values used in logic gates, which determine the output based on the logic gate operation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Truth Table Rows

A

Each row in a truth table represents a unique combination of inputs and their corresponding output based on the logic gate or circuit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Binary System

A

A system of numbers using only two values (0 and 1), widely used in computing to represent data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Circuit Diagrams

A

Diagrams that represent the physical arrangement and connections of logic gates in a circuit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Conditional Statements

A

Statements in programming that allow the execution of certain parts of the code based on specific conditions, such as if-else statements.

17
Q

Computational Logic

A

The use of logic gates and binary arithmetic in computers to process and manipulate data in circuits.

18
Q

AND Operation

A

An operation that produces an output of 1 if and only if both inputs are 1, otherwise, the output is 0.

19
Q

OR Operation

A

An operation that produces an output of 1 if at least one input is 1; it only produces 0 if both inputs are 0.

20
Q

NOT Operation

A

An operation that inverts the input; if the input is 1, the output is 0, and if the input is 0, the output is 1.

21
Q

Logic Gate Diagram

A

A diagram that represents the logical expression and behavior of a logic gate or a combination of gates.

22
Q

Boolean Algebra

A

A branch of algebra that deals with variables that have two possible values (true or false) and uses operations like AND, OR, and NOT.

23
Q

Truth Table Calculation

A

The process of calculating the outputs of logic gates based on all possible combinations of inputs, which are then displayed in a truth table.

24
Q

8 Possible Input Combinations

A

For 3 inputs, there are 8 possible combinations of 0s and 1s in a truth table, ranging from 000 to 111.