Important Assignment boolean logic class 11

In this article, you will get Important Assignment boolean logic class 11. So here we go!

Important Assignment boolean logic class 11

 

Objective-type questions (1 mark)

In the first portion of Assignment boolean logic class 11, we will see objective type questions. 

Fill in the blanks

    1. A __________ statement returns either True or False value.
    2. The logical values can be stored in ______________.
    3. A __________ represents a Boolean function with all the input and output in tabular form.
    4. The only boolean function which operate on a single input variable is ____________.
    5. The _____________ is a boolean operation which perform multiplication.
    6. The ___________ is a boolean operation which perform addition.
    7. The boolean expression evaluated from ________ to ___________.
    8. The _________ operator has high (top) priority in boolean statement evaluation.
    9. The __________ is a graphical representation of turth table.
    10. The __________ gate produces the reverse result of AND gate.

Find the questions and answers for fill in the blanks of Assignment boolean logic class 11. 

Answers

    1. boolean
    2. logical variables or constants
    3. Truth Table
    4. Not
    5. AND
    6. OR
    7. left, right
    8. NOT 
    9. Logical Gate
    10. NAND

Assignment Chapter 1

The next section of Assignment boolean logic class 11 is having MCQs. 

MCQs

  • When the result of any boolean statement is always 1 is known as ___________.
    1. True
    2. Tautology/
    3. Fallacy
    4. False
  • When the result of any boolean statement is always 0 is known as ______________.
    1. True
    2. Tautology
    3. Fallacy
    4. False
  • The logical operations can be carried out by which of the following?
    1. Values and Variables
    2. Functions and Laws
    3. Operators and Operands
    4. None of these
  • To denote NOT operation which of the following symbols is used?
    1. bar
    2. dot
    3. plus
    4. asterisk
  • The dot symbol is used to represent which of the following operation?
    1. AND
    2. OR
    3. NOT
    4. NAND
  • Which of the following are logical statements:
    1. The Indian cricket team is a world champion in 2011.
    2. What are the parts of the boolean function?
    3. There are three types of boolean operators.
    4. The NOT function can be operated on more than one Boolean function.
  • Which of the following gate is also known as an inverter 
    1. AND
    2. OR
    3. NOT
    4. NAND
  • Which of the following gate returns a true result if both inputs are true otherwise false.
    1. AND
    2. OR
    3. NOT
    4. None of the above
  • Which gate can be written like A & B
    1. AND
    2. OR
    3. NOT
    4. XOR
  • Which gate returns true if both inputs are similar otherwise false.
    1. NAND
    2. NOR
    3. XOR
    4. None of the above

Now it’s time to check the answers for MCQs for Assignment boolean logic class 11.

Answers

1. b.Tautology      2. c. Fallacy      3. c. Operators and Operands      4. a. bar    5. a. AND

6. a and d             7. c. NOT        8. a. AND                     9. a. AND        10. XOR
 

Descriptive questions:(2/3 marks)

[1] Prepare the truth table for a.  X+(X.Y)   b. X.(X+Y)     c. X’ + Y’    d. (X.Y) + (Y.X)

Ans.: 

a) X + (X.Y)

XYX.YX+(X.Y)
0000
0100
1001
1111

 b) X.(X+Y) 

XYX+YX.(X+Y)
0000
0110
1011
1111

c) X’ + Y’

XYX’Y’X’ + Y’
00111
01101
10011
11000

d) (X.Y) + (Y.X)

XYX.YY.X(X.Y) + (Y.X)
00000
01000
10000
11111

[2] Write rules for preparing the truth table.

Ans.: The rules for preparing truth table are as follows:

  1. Check the number of variables of expression.
  2. Make column for each input variable.
  3. Make column for each logical expression.
  4. Write 0’s in first half for the number of rows in first column and then second column respectively.
  5. Continue the same pattern until the last column.
  6. Compute result for each operation by considering the input values of variables written in each row.

[3] Explain the following gates with an example:

  1. AND
  2. OR
  3. NAND
  4. NOR
  5. XOR

1. AND

  • AND refers to A & B.
  • It accepts two inputs and produced one output.
  • When both inputs are high (1) it returns high (1) output otherwise low (0).
  • It simply multiplies the boolean variables.
and gate for computer science class 11 boolen logic
and gate

2. OR Gate

  • OR refers to A or B.
  • It is considered as inclusive “or”.
  • The output is high (1) if either one or two inputs are high (1) otherwise low (0).
  • If both inputs are false it produces a false result. 
  • It is the logical addition of two boolean variables.
or gate computer science class 11 boolean logic
or gate

3. NAND

  • It stands for NOT AND, producing a reverse result of AND gate.
  • The truth table  for NAND Gate is as follows:
  B A.B  (A.B)’
000  1 
010 1
100 1
111 0

The gate looks like as follows:

NAND gate cs class 11 boolean logic

4. NOR

  • It stands for NOT OR.
  • It produces reverse output than the OR gate.
  • The truth table for NOR Gate is as follows:
  B A+B  (A+B)’
000  1 
011 0
101 0
111 0
  • The logical gate design is as follows:
NOR Gate chapter 3 boolean logic computer science class 11
NOR Gate

4. XOR

  • It produces high output if the input of 1s is odd, otherwise false. 
  • It is pronounced as exclusive OR gate.
  • The truth table is as follows:
  B Result
000
011
101
110
  • The logical gate for XOR is as follows:
XOR Gate
XOR Gate

[4] Name the following law and verify them using a truth table:

  1. x + x’ = 1
  2. x + y = y + x
  3. x + (y + z ) = (x + y ) + z
  4. x + xy = x
  5. (x + y)’ = x’.y’

1. x + x’ =1

It is a Complementary law. The truth table is as follows:

XX’X+X’
011
101

2. x + y = y + x

It is a commutative law. The truth table is as follows:

XYX + YY + X
0000
0111
1011
1111

3. x + (y + z ) = (x + y ) + z

It is an associative law. The truth table is as follows:

XYZX + YY + ZX + (Y + Z)(X + Y) + Z
0000000
0010111
0101111
0111111
1001011
1011111
1101111
1111111

4. x + xy = x

This is absorption law. The truth table for this law as follows:

XYXYX + XY
0000
0100
1001
1111

[5] Draw logical circuits for the following:

  1. Y = ab + bc + ca
  2. Y = (a+b)’ . (a+b)
  3. Y = a’.b’ + (a.b)’

Follow this link for notes:

Notes Boolean Logic Computer Science Class 11

Computer Science Class 11

To read more about class 11 computer science, follow this link:

I hope you are able to write the answers. Hit the like button if you enjoyed the article Assignment Boolean logic class 11. If you have any doubts or queries you can ask in the comment section. Share your feedback for better content.

Thank you for reading this article.

Leave a Reply