I think it’s structural engineers but still check with the others
In industries together with production, we want people to address the manufacturing of merchandise and the usage of heavy machinery.
<h3>What is the painting situation?</h3>
In such painting situations, people are at risk of injuries, and this prices the maximum for the company. So so that you can put into effect value discount is such conditions we want to have right coincidence cowl plans for the people and make sure all of the protection precautions are taken withinside the factory.
- The people have to be properly educated on using protection measures and in case any injuries arise we have to have coverage claims in order that we not want to make investments extra cash and we also can offer protection and protection to the people.
- This approach is excellent for this enterprise due to the fact regardless of what number of precautions we take people are uncovered to fitness risks and as a result having the right coverage insurance is a superb value discount strategy.
Read more bout the compensation :
brainly.com/question/25273589
#SPJ1
Answer:
A,C, and D
Explanation:
Potible ladders have to configure with many designs in mind but the most evedent is that they are usally unstable
BRAINLIEST PLS
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:
If the heat engine operates for one hour:
a) the fuel cost at Carnot efficiency for fuel 1 is $409.09 while fuel 2 is $421.88.
b) the fuel cost at 40% of Carnot efficiency for fuel 1 is $1022.73 while fuel 2 is $1054.68.
In both cases the total cost of using fuel 1 is minor, therefore it is recommended to use this fuel over fuel 2. The final observation is that fuel 1 is cheaper.
Explanation:
The Carnot efficiency is obtained as:
Where is the atmospheric temperature and is the maximum burn temperature.
For the case (B), the efficiency we will use is:
The work done by the engine can be calculated as:
where Hv is the heat value.
If the average net power of the engine is work over time, considering a net power of 2.5MW for 1 hour (3600s), we can calculate the mass of fuel used in each case.
If we want to calculate the total fuel cost, we only have to multiply the fuel mass with the cost per kilogram.