
AND gate:
The AND gate is denoted by “AND”, “.” or no symbol. The AND gate is always opposite to the OR gate.
Truth table:
Consider the truth table of AND gate is as follows:
A | B | C = AB |
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
Here, the Boolean expressions “AB” is equivalent to the expression “A.B” is read “A and B”. The result of the given expression is 1 only when both the inputs are 1, and 0 otherwise.
OR gate:
The OR gate is denoted by “OR” or “+”. The result of OR gate is 0 when both the inputs are 0, otherwise 1.
Truth table:
Consider the truth table of OR gate is as follows:
A | B | C = A+B |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
Here, the Boolean expressions “A+B” then it is read “A or B”. The result of the given expression is 0 only when both the inputs are 0, and 1 otherwise.
NOT gate:
The NOT gate denoted by negation symbol like “B’”. The result of NOT gate is 0 if the input is 1 and vice versa.
Truth table:
The truth table for NOT gate is given below:
A | B' |
0 | 1 |
1 | 0 |
Here, the “B’” is simply opposite value of the input variable “A”.
Ex-OR gate:
The result of Ex-OR gate will be 1, if any of the input is 0. Otherwise 1.
The truth table for XOR gate is given below:
A | B | C = A |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
Here, the Boolean expression of “A
NAND gate:
The NAND gate is always opposite to the AND gate which means the result of NAND gate is 0 if both inputs are 1, otherwise 0.
Truth table:
Consider the truth table of NAND gate is as follows:
A | B | C = (AB)’ |
0 | 0 | 1 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
The result of the given expression is 0 only when both the inputs are 1, and 0 otherwise.

Want to see the full answer?
Check out a sample textbook solution
Chapter 3 Solutions
Essentials of Computer Organization and Architecture
- You can use Eclipse later for program verification after submission. 1. Create an abstract Animal class. Then, create a Cat class. Please implement all the methods and inheritance relations in the UML correctly: Animal name: String # Animal (name: String) + getName(): String + setName(name: String): void + toString(): String + makeSound(): void Cat breed : String age: int + Cat(name: String, breed: String, age: int) + getBreed(): String + getAge (): int + toString(): String + makeSound(): void 2. Create a public CatTest class with a main method. In the main method, create one Cat object and print the object using System.out.println(). Then, test makeSound() method. Your printing result must follow the example output: name: Coco, breed: Domestic short-haired, age: 3 Meow Meowarrow_forwardautomata theory can please wright the exact language it know for example say it knows strings start 0 and end with 1 this is as example also as regular expressionarrow_forwardI would like help to resolve the following case, thank youarrow_forward
- I need help with the following casearrow_forwardQ2) by using SHI-Tomasi detector method under the constraints shown in fig. 1 below find the corner that is usful to use in video-steganography? 10.8 ...... V...... 0.7 286 720 ke Fig.1 Threshold graph. The plain test is :Hello Ahmed the key is: 3a 2x5 5b 7c 1J 55 44 2X3 [ ] 2x3arrow_forwardusing r languagearrow_forward
- Multidimensional arrays can be stored in row major order, as in C++, or in column major order, as in Fortran. Develop the access functions for both of these arrangements for three-dimensional arrays.arrow_forwardWhat are the arguments for and against Java’s implicit heap storage recovery, when compared with the explicit heap storage recovery required in C++? Consider real-time systems.arrow_forward8. Name and Email AddressesWrite a program that keeps names and email addresses in a dictionary as key-value pairs. The program should display a menu that lets the user look up a person’s email address, add a new name and email address, change an existing email address, and delete an existing name and email address. The program should pickle the dictionary and save it to a file when the user exits the program. Each time the program starts, it should retrieve the dictionary from the file and unpickle it. How would the user be able to use the program?arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





