Binary Logic
Boolean Algeb|ra
Karnaugh Maps
100

What are the three main logical operators?

And, or, and not

100

If we have two variables, A (True) and B (False), what is the result of the logical AND operation (A * B)? 

 

The result is False (0) because an AND operation requires all inputs to be True to yield a True result.

100

What is a Karnaugh map?

A visual table used to simplify Boolean logic expressions.

200

How is binary logic is crucial in programming?

It allows machines to execute algorithms, follow instructions, and simulate intelligent behavior

200

In an exclusive OR (XOR) operation, if both inputs are the same (1 and 1), what is the final output?

The result is 0 (False) because an XOR gate only outputs True when the inputs are different.

200

What are Karnaugh maps mainly used for?

They are used to reduce complex logical expressions into simpler ones.

300

What are truth tables?

a table in which each row represents a distinct possible set of truth values for the sentence

300

What value must the variable X have for the expression NOT (X AND 1) to result in True?

X must be 0 (False)

300

How do Karnaugh maps help simplify logical functions?

By grouping adjacent true values and removing unnecessary variables.

400

how programmers use truth tables to predict outcomes?

Truth tables help programmers understand and predict how different conditions will be evaluated

400

 ¿For an OR operation between two variables, how many input combinations result in a 0 (False) output?

only one combination

400

Why are Karnaugh maps useful in digital systems?

They make circuits and logical operations more efficient and easier to design.

500
How are truth tables constructed?

you all need possible combinations of inputs and then calculate the result based on the operator

500

If an algorithm evaluates the expression (A  OR  B)  AND (NOT B), and we know that B is False (0), which variable's value does the final result depend on?

The final result depends entirely on A because, with B being False, the expression simplifies A  AND  1, which is always equal to A.

500

Why can Karnaugh maps improve the performance of a digital system?

Because they reduce the number of logical operations, making the system faster and more efficient.