Answer:
Attached is the complete question but the weight of the mailbox and cross bar differs from the given values which are : weight of mail box = 3.2 Ib, weight of the uniform cross member = 10.3 Ib
Answer : moment of inertia = 186.7 Ib - in
Explanation:
Given data
weight of the mailbox = 3.2 Ib
weight of the uniform cross member = 10.3 Ib
The origin is of mailbox and cross member is 0
The perpendicular distance from Y axis of centroid of the mailbox
= 4 + (25/2) = 16.5"
The centroid of the bar =( ( 1 + 25 + 4 + 4 ) / 2 ) - 4 = 13"
therefore The moment of Inertia( Mo) = (3.2 * 16.5) + ( 10.3 * 13)
= 52.8 + 133.9 = 186.7 Ib-in
A) chilled water from evaporator
“Thinking about pleasant things to pass the time” would not promote safety in the shop because it would be taking the focus away from important tasks, which in turn decreases safety.
Explanation:
Given T = 10 °C
The conversion of T( °C) to T(K) is shown below:
T(K) = T( °C) + 273.15
So,
T = (10 + 273.15) K = 283.15 K
<u>T = 283.15 K </u>
The conversion of T( °C) to T(F) is shown below:
T (°F) = (T (°C) × 9/5) + 32
So,
T (°F) = (10 × 9/5) + 32 = 50 °F
<u>T = 50 °F</u>
The conversion of T( °C) to T(R) is shown below:
T (R) = (T (°C) × 9/5) + 491.67
So,
T (R) = (10 × 9/5) + 491.67 = 509.67 R
<u>T = 509.67 R</u>
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)