Robotics & Artificial Intelligence
OR gate produces '1' if at least one input is '1'.
Computing Evolution
2 Likes
Answer
True
Reason — OR gate produces output '1' when at least one of the inputs is '1', it produces '0' only when both inputs are '0', as shown in the OR gate truth table:
| Input X | Input Y | Output (X + Y) |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 1 |
Answered By
1 Like
Related Questions
From the following problems, identify which problems are suitable for deterministic computing and which problems are suitable for probabilistic computing.
- Face recognition system for attendance
- Account management of an organisation
- Customer database in bank
- Product recommendations to customers
- Calculations for satellite launching system
- Predicting disease in plants
- Student behaviour analysis system
Binary logic is the base of all types of computing.
Assembly language is less readable as compared to binary language.
Recently used programming languages are high level languages.