Answer:
Option B
Explanation:
An operational amplifier usually has a high open loop gain of around 10^5 which allows a wide range get of feed back levels in order to achieve the desired performance so therefore a low open loop gain reduces the range feed back level thereby reducing the performance which can cause errors in the output voltage.
Explanation:
Clearance:
For easy matching and dis matching of hole and shaft we use size of hole little bit more than the size of shaft and this difference in size is called clearance.
Backlash:
It is the clearance between the two mating gear to avoids failure of gears.Actually when temperature of gears increases then at the same time the size of gear also increases ,due this there is a possibility foe jamming of gears so to avoids this backlash is provides.
Interference:
When two gears are matting then addendum of one gear inters into the deddendum of another gear and due to this gears get jam .This phenomenon is called interference.
Answer:
Ensure that all material and energy inputs and outputs are as inherently safe and benign as possible. Minimize the depletion of natural resources. Prevent waste. Develop and apply engineering solutions while being cognizant of local geography, aspirations, and cultures.Green engineering is the design, commercialization, and use of processes and products that minimize pollution, promote sustainability, and protect human health without sacrificing economic viability and efficiency.The goal of environmental engineering is to ensure that societal development and the use of water, land and air resources are sustainable. This goal is achieved by managing these resources so that environmental pollution and degradation is minimized.
Explanation:i helped
Answer:
def theRoundTrip(movement):
x=0
y=0
for i in movement:
if i not in ["U","L","D","R"]:
print("bad input")
return
if i=="U":
y+=1
if i=="L":
x-=1
if i=="D":
y-=1
if i=="R":
x+=1
return x==0 and y==0