1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
kiruha [24]
3 years ago
10

An assembly line has 3 fail safe sensors and one emergency shutdown switch.The line should keep moving unless any of the followi

ng conditions arise:
(1) If the emergency switch is pressed
(2) If the senor1 and sensor2 are activated at the same time.
(3) If sensor 2 and sensor3 are activated at the same time.
(4) If all the sensors are activated at the same time
Suppose a combinational circuit for above case is to be implemented only with NAND Gates. How many minimum number of 2 input NAND gates are required.
Engineering
1 answer:
Crazy boy [7]3 years ago
7 0

Answer:

1 NAND gate

Explanation:

The minimum number of 2 input NAND gates that can be used to implement the combinational circuit = 1

The only true combinations conditions that can produce a false result ( i.e. condition/result different from the expected result as stated in the question )

Sensor 2 activated + Emergency switch pressed = False ( Line will keep moving )

You might be interested in
A steel bolt has a modulus of 207 GPa. It holds two rigid plates together at a high temperature under conditions where the creep
VikaD [51]

Answer:

14.36((14MPa) approximately

Explanation:

In this question, we are asked to calculate the stress tightened in a bolt to a stress of 69MPa.

Please check attachment for complete solution and step by step explanation

7 0
3 years ago
How much horse power does a Lamborghini have
statuscvo [17]
The Lamborghini SCV12 has 830 horse power.
4 0
3 years ago
Read 2 more answers
Tensile testing provides engineers with the ability to verify and establish material properties related to a specific material.
Sedbober [7]

Answer:

True

Explanation:

Tensile testing which is also referred to as tension testing is a process which materials are subjected to so as to know how well it can be stretched before it reaches breaking point. Hence, the statement in the question is true

7 0
3 years ago
For a project in C++ we are supposed toDesign a class named Month. The class should have the following private members:-name: a
mart [117]

Answer:

include <iostream>

using namespace std;

 

class Month

{

public:

 Month (char firstLetter, char secondLetter, char thirdLetter);

 

 Month (int monthNum);

.

 

 Month();

 void outputMonth_num();

 

 

 void outputMonthLetters();

private:

 int month;

};

 

 

int main ()

{

 //

 // Variable declarations

 //

 int monthNum;

 char firstLetter, secondLetter, thirdLetter;    

 char testAgain;              

 

 do {

 

   cout << endl;

   cout << "Testing the default constructor ..." << endl;

   Month defaultMonth;

   defaultMonth.outputMonth_num();

   defaultMonth.outputMonthLetters();

 

   //

   // Construct a month using the constructor with one integer argument

   //

   cout << endl;

   cout << "Testing the constructor with one integer argument..." << endl;

   cout << "Enter a month number: ";

   cin >> monthNum;

 

   Month testMonth1(monthNum);

   testMonth1.outputMonth_num();

   testMonth1.outputMonthLetters();

 

   //

   // Construct a month using the constructor with three letters as arguments

   //

   cout << endl;

   cout << "Testing the constructor with 3 letters as arguments ..." << endl;

   cout << "Enter the first three letters of a month (lowercase): ";

   cin >> firstLetter >> secondLetter >> thirdLetter;

   cout << endl;

 

   Month testMonth2(firstLetter, secondLetter, thirdLetter);

   testMonth2.outputMonth_num();

   testMonth2.outputMonthLetters();

 

   //

   // See if user wants to try another month

   //

   cout << endl;

   cout << "Do you want to test again? (y or n) ";

   cin >> testAgain;

 }

 while (testAgain == 'y' || testAgain == 'Y');

 

 return 0;

}

 

 

Month::Month(char firstLetter, char secondLetter, char thirdLetter)

{

if ((firstLetter == 'j')&&(secondLetter == 'a')&&(thirdLetter == 'n'))

  outputMonth_num = 1;

if ((firstLetter == 'f')&&(secondLetter == 'e')&&(thirdLetter == 'b'))

  outputMonth_num = 2;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'r'))

  outputMonth_num = 3;

if ((firstLetter = 'a')&&(secondLetter == 'p')&&(thirdLetter == 'r'))

  outputMonth_num = 4;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'y'))

  outputMonth_num = 5;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(thirdLetter == 'n'))

  outputMonth_num = 6;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(.thirdLetter == 'l'))

  outputMonth_num = 7;

if ((firstLetter == 'a')&&(secondLetter == 'u')&&(thirdLetter == 'g'))

  outputMonth_num = 8;

if ((firstLetter == 's')&&(secondLetter == 'e')&&(thirdLetter == 'p'))

  outputMonth_num = 9;

if ((firstLetter == 'o')&&(secondLetter == 'c')&&(thirdLetter == 't'))

  outputMonth_num = 10;

if ((firstLetter == 'n')&&(secondLetter == 'o')&&(thirdLetter == 'v'))

 outputMonth_num = 11;

if ((firstLetter == 'd')&&(secondLetter == 'e')&&(thirdLetter == 'c'))

 outputMonth_num = 12;

}

 

Month::inputMonthByNumber

{

if (Month_num > 12 && Month_num < 1)

cout << "Invalid number for Month, please choose 1-12)\n";

}

 

void Month::outputMonth_num()

{

 if (month >= 1 && month <= 12)

   cout ><< "Month: " << month << endl;

 else

   cout << "Error - The month is not a valid!" << endl;

}

 

void Month::outputMonthLetters()

{

 switch (month)

   {

   case 1:

     cout << "Jan" << endl;

     break;

   case 2:

     cout << "Feb" << endl;

     break;

   case 3:

     cout << "Mar" << endl;

     break;

   case 4:

     cout << "Apr" << endl;

     break;

   case 5:

     cout << "May" << endl;

     break;

   case 6:

     cout << "Jun" << endl;

     break;

   case 7:

     cout << "Jul" << endl;

     break;

   case 8:

     cout << "Aug" << endl;

     break;

   case 9:  

     cout << "Sep" << endl;

     break;

   case 10:

     cout << "Oct" << endl;

     break;

   case 11:

     cout << "Nov" << endl;

     break;

   case 12:

     cout << "Dec" << endl;

     break;

   default:

     cout << "Error - the month is not a valid!" << endl;

   }

}

7 0
3 years ago
Write the design brief (identify the problem) of mine headgear​
grin007 [14]

The design brief that identified the problem of mine headgear is:

The structural structure above an underground mine shaft that facilitates the hoisting of machinery, persons, or supplies is known as a headframe (also called as a gallows frame, winding tower, hoist frame, pit frame, shafthead frame, headgear, headstock, or poppethead).

Mine headgear supports wheel systems that suspend winding cables that convey employees and ore up and down deep level shafts. These weird humanoid constructions have become the mining industry's defining emblem.

A miner's helmet consists of four major components:

Part 1: The hoist or winch is in a winding house. This component of the system is responsible for winding and unwinding the steel cable.

A motor and a control system are connected to the hoist.

When a steel cable unwinds from the winch, the mine cage and skips are lowered into the mine.

When the steel cable is wound up again, the mine cage and skips are elevated.

The sheave wheel is a pulley wheel that stands above the mining shaft in Part 2. The hoist rope travels over the sheave wheel and down the mine shaft.

The sheave wheel minimizes the mine cable's sliding friction.

Part 3: The head frame is the framework that holds the sheave wheel in place. When lifting the heavy mine cage, it must be robust enough to maintain the sheave wheel in place.

The head frame's left "legs" slope towards the hoist. This is due to the cable's strain dragging the entire frame in that direction. The sloping legs keep the head frame from tipping or collapsing.

Part 4: The cage and the jumps. Miners and equipment are transported up and down the mine in the cage. Skips are attached beside or beneath the cage.

Skips are used to transport ore and waste materials from mines.

<h3>What is a design brief?</h3>

A design brief, also called as a creative brief, is a program management document that identifies the scope, scale, and key aspects of your impending design project.

Learn more about design brief:

brainly.com/question/21422013

#SPJ1

3 0
2 years ago
Other questions:
  • What is a construction worker with limited skills called?
    12·1 answer
  • A coal-burning power plant generates electrical power at a rate of 650 megawatts (MW), or 6.50 × 108 J/s. The plant has an overa
    12·1 answer
  • A 4-pole, 3-phase induction motor operates from a supply whose frequency is 60 Hz. calculate: 1- the speed at which the magnetic
    10·1 answer
  • PLEASE ANSWER THIS DIAL CALIPER
    9·1 answer
  • The following laboratory test results for Atterberg limits and sieve-analysis were obtained for an inorganic soil. [6 points] Si
    14·1 answer
  • Which of the following requirement statements is an example of a breakdown of the accuracy standard?
    11·1 answer
  • أجوبة على مسائل في الإستاتيكا أيمكن ذالك
    9·1 answer
  • Two children are playing on a seesaw. The child on the left weighs 50 lbs. And the child on the right weighs 100 lbs. If the chi
    5·1 answer
  • A blue and a yellow cubes are rolled- What is the probability that a yellow cube is a multiple of 3 and the product is 6?
    7·1 answer
  • What is the minimum clamp time for gluing a panel?
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!