Question

In: Electrical Engineering

QUESTION 2 Suppose you are creating a truth table with 3 inputs (a, b, and c)...

QUESTION 2

Suppose you are creating a truth table with 3 inputs (a, b, and c) and 1 output (F). If an 'x' symbol indicates "don't care" (the value of the input does not effect the output), how many input combinations are covered by the single row of a truth table shown below?

a b c F
x 1 x 1
-

1

-

2

-

3

-

4

-

None of the above

QUESTION 3

Suppose you have a 4x1 multiplexer (MUX) whose inputs are shown below in a single row of a truth table. The inputs i0 - i3 are data inputs and s0 and s1 are selector bits. What Boolean value will the data output, d, be for this row?

i3 i2 i1 i0 s1 s0 d
1 1 0 1 0 1 ?
-

0

-

1

-

2

-

3

QUESTION 4

Suppose you have a 4x1 multiplexer (MUX) whose inputs are shown below in a single row of a truth table. The inputs i0 - i3 are data inputs and s0 and s1 are selector bits. What Boolean value will the data output, d, be for this row?

i3 i2 i1 i0 s1 s0 d
1 1 0 1 0 0 ?
-

0

-

1

-

2

-

3

QUESTION 5

Suppose you have a 4x1 multiplexer (MUX) whose inputs are shown below in a single row of a truth table. The inputs i0 - i3 are data inputs and s0 and s1 are selector bits. What Boolean value will the data output, d, be for this row?

i3 i2 i1 i0 s1 s0 d
0 0 0 1 1 0 ?
-

0

-

1

-

2

-

3

QUESTION 6

Suppose you have a 4x1 multiplexer (MUX) whose inputs are shown below in a single row of a truth table. The inputs i0 - i3 are data inputs and s0 and s1 are selector bits. What Boolean value will the data output, d, be for this row?

i3 i2 i1 i0 s1 s0 d
0 1 1 1 1 1 ?
-

0

-

1

-

2

-

3

QUESTION 7

Suppose you have a 4x2 priority encoder whose inputs are shown below in a single row of a truth table. The inputs d3 - d0 are inputs and e1 and e0 are output bits. What value will the data outputs, e1 and e0, be for this row (assume d3 is the highest priority input and results in the largest encoded value)?

d3 d2 d1 d0
0 1 1 1
-
e1 e0
0 0
-
e1 e0
0 1
-
e1 e0
1 0
-
e1 e0
1 1

QUESTION 8

Suppose you have a 4x2 priority encoder whose inputs are shown below in a single row of a truth table. The inputs d3 - d0 are inputs and e1 and e0 are output bits. What value will the data outputs, e1 and e0, be for this row (assume d3 is the highest priority input and results in the largest encoded value)?

d3 d2 d1 d0
0 0 0 1
-
e1 e0
0 0
-
e1 e0
0 1
-
e1 e0
1 0
-
e1 e0
1 1

QUESTION 9

Select all of the minterms that will be in the Boolean equation that describes the output, f, in the following truth table (a, b, and c are inputs).

a b c f
0 0 0 1
0 0 1 0
0 1 0 0
0 1 1 1
1 0 0 1
1 0 1 0
1 1 0 0
1 1 1 1
-

a'b'c'

-

a'b'c

-

a'bc'

-

a'bc

-

ab'c'

-

ab'c

-

abc'

-

abc

Solutions

Expert Solution

The solutions is given below:

2. In the question given, x indicate don't care condition. The required table have been constructed below:

a b c F
0 1 0 1
0 1 1 1
1 1 0 1
1 1 1 1

Therefore, with the single row given in the question, actually 4 different combinations are possible.

3. In a 4X1 multiplexer, there are 4 input lines (i3 to i0) and 2 select lines (s1 and s0). There is only one output line d.

Now, if s1s0=00, then d=i0

s1s0=01, then d=i1

s1s0=10, then d=i2

s1s0=11, then d=i3

According to the given question, s1s0=01. Therefore the inout coming from line i1 will be found at the output. Therefore the binary value of output d will be d=0.

4.

In a 4X1 multiplexer, there are 4 input lines (i3 to i0) and 2 select lines (s1 and s0). There is only one output line d.

Now, if s1s0=00, then d=i0

s1s0=01, then d=i1

s1s0=10, then d=i2

s1s0=11, then d=i3

According to the given question, s1s0=00. Therefore the inout coming from line i0 will be found at the output. Therefore the binary value of output d will be d=1.

5.

In a 4X1 multiplexer, there are 4 input lines (i3 to i0) and 2 select lines (s1 and s0). There is only one output line d.

Now, if s1s0=00, then d=i0

s1s0=01, then d=i1

s1s0=10, then d=i2

s1s0=11, then d=i3

According to the given question, s1s0=10. Therefore the inout coming from line i1 will be found at the output. Therefore the binary value of output d will be d=0.

As per the guideline, first 4 questions are solved and given above.

Hope this detailed explanation helps.


Related Solutions

1. write a truth table using this symbol: --> 2. write the inputs for the truth...
1. write a truth table using this symbol: --> 2. write the inputs for the truth table to the left of the --> and write the outputs for the truth table to the right of the --> 3. write the compliment, or NOT using ' As an example: The truth table for AND is written this way: A B --> A AND B 0 0 --> 0 0 1 --> 0 1 0 --> 0 1 1 --> 1 or...
1. write a truth table using this symbol: --> 2. write the inputs for the truth...
1. write a truth table using this symbol: --> 2. write the inputs for the truth table to the left of the --> and write the outputs for the truth table to the right of the --> 3. write the compliment, or NOT using ' As an example: The truth table for AND is written this way: A B --> A AND B 0 0 --> 0 0 1 --> 0 1 0 --> 0 1 1 --> 1 or...
Write a C++ program to construct the truth table of P ∨¬(Q ∧ R) If you...
Write a C++ program to construct the truth table of P ∨¬(Q ∧ R) If you could include comments to explain the code that would be much appreciated!!! :) Thank you so much!
C++ Write a program that produces the truth table of the following logical operators. You aresupposed...
C++ Write a program that produces the truth table of the following logical operators. You aresupposed to output one table with all the operators (one column for each operator). Write theheader of the table - this is the name of the columns-. Output the result on the file prog1 output.txt. The table should contain the letters T and F, it should NOT print 1s and 0s. Show theresults on the following order: 1. negation (!) 2. disjunction (AND operator, &)...
Write a program in C++ that will output the truth table for a simple wff. There...
Write a program in C++ that will output the truth table for a simple wff. There will only be Ps and Qs, so you can hard code the P truth table and the Q truth table into arrays. The user will use A for ^ , O for V, N for ' , & I for -> . Hint: Read the first character, load the appropriate truth table into the first working array. Read the next character. If it is...
1.  Suppose c = 15 and A = 35 degrees. Find: a= b= B= 2. Suppose a...
1.  Suppose c = 15 and A = 35 degrees. Find: a= b= B= 2. Suppose a = 12 and b = 11. Find an exact value or give at least two decimal places: sin(A)= cos(A) = tan(A) = sec(A)= csc(A)= cot(A)=
write a program that will print a truth table for p ^ ~q. Using C++ please.
write a program that will print a truth table for p ^ ~q. Using C++ please.
In c++ use bool functions to create and print a truth table for disconjunction and negation...
In c++ use bool functions to create and print a truth table for disconjunction and negation functionality and use it to print the truth table for equation pv~p.
A, B and C be sets. (a) Suppose that A ⊆ B and B ⊆ C....
A, B and C be sets. (a) Suppose that A ⊆ B and B ⊆ C. Does this mean that A ⊆ C? Prove your answer. Hint: to prove that A ⊆ C you must prove the implication, “for all x, if x ∈ A then x ∈ C.” (b) Suppose that A ∈ B and B ∈ C. Does this mean that A ∈ C? Give an example to prove that this does NOT always happen (and explain why...
Write down the truth table fora 4-to-2 priority encoderhaving input W[3:0]and with priority levels in the...
Write down the truth table fora 4-to-2 priority encoderhaving input W[3:0]and with priority levels in the decreasing order (i.e., W[0]-Highest, ....., W[3]-Least). Write down the Verilog code for implementing   the same. plz asap fast
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT