False! Just saying. You could be under the influence, or just have no clue as to what you're doing.
Technician A is correct. Technician B is wrong because a gear's transmission is used to increase or decrease torque.
The relation torque is relying on multiplying the circumferential detail with the resource of the usage of the radius; massive gears experience a greater amount of torque, at the same time as smaller gears experience a great deal much less torque. Similarly, the torque ratio is equal to the ratio of the gears' radii. A gear's transmission torque modifications as it will boom or decreases speed. Commonly, with the resource of the usage of lowering the speed, a small torque on the doorway issue is transferred as a massive torque at the output issue. The calculation of torque is quantified with the resource of the usage of an extensive form of teeth.
Learn more about the torque at brainly.com/question/28220969
#SPJ4
Answer:
hello some parts of your question is missing attached below is the missing part ( the required fig and table )
answer : The solar collector surface area = 7133 m^2
Explanation:
Given data :
Rate of energy input to the collectors from solar radiation = 0.3 kW/m^2
percentage of solar power absorbed by refrigerant = 60%
Determine the solar collector surface area
The solar collector surface area = 7133 m^2
attached below is a detailed solution of the problem
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Answer:
1. Measure the temperature of the boxes and leave them unconnected.
2. Norton reduces his circuit down to a single resistance in parallel with a constant current source. A real-life Norton equivalent circuit would be continuously wasting power (as heat) as the current source dumps energy into the resistor, even when externally unconnected, while a Thevenin equivalent circuit would sit there doing nothing.
3. The Norton equivalent box would get warm and eventually run out of power. The Thevenin equivalent box would stay at ambient temperature.