Answer and explanation:
The graphical representation of the electronic eye
The state table showing
the present state
input
Next state and
the output
are shown in the attached file
Answer:
Overall ideal mechanical advantage of the machine = 40
Explanation:
Given:
Ideal mechanical advantage of three machine = 2, 4, 5
Find:
Overall ideal mechanical advantage of the machine
Computation:
Overall ideal mechanical advantage of the machine = 2 × 4× 5
Overall ideal mechanical advantage of the machine = 40
Answer:
The corresponding absolute pressure of the boiler is 24.696 pounds per square inch.
Explanation:
From Fluid Mechanics, we remember that absolute pressure (), measured in pounds per square inch, is the sum of the atmospheric pressure and the working pressure (gauge pressure). That is:
(1)
Where:
- Atmospheric pressure, measured in pounds per square inch.
- Working pressured of the boiler (gauge pressure), measured in pounds per square inch.
If we suppose that and , then the absolute pressure is:
The corresponding absolute pressure of the boiler is 24.696 pounds per square inch.
Answer:
robotic technology
Explanation:
Innovation is nothing but the use of various things such as ideas, products, people to build up a solution for the benefit of the human. It can be any product or any solution which is new and can solve people's problems.
Innovation solution makes use of technology to provide and dispatch new solutions or services which is a combination of both technology and ideas.
One such example of an innovative solution we can see is the use of "Robots" in medical science or in any military operations or rescue operation.
Sometimes it is difficult for humans to do everything or go to everywhere. Thus scientist and engineers have developed many advance robots or machines using new ideas and technology to find solutions to these problems.
Using innovations and technologies, one can find solutions to many problems which is difficult for the peoples. Robots can be used in any surveillance operation or in places of radioactive surrounding where there is a danger of humans to get exposed to such threats. They are also used in medical sciences to operate and support the patient.
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language