Answer: material resources: cameras, light detection and ranging systems, radar, sensors, advanced GPS, and millions of miles of training data, and more
I don't know about the intellectual resources sorry
Answer:
The speed of the sound for the adiabatic gas is 313 m/s
Explanation:
For adiabatic state gas, the speed of the sound c is calculated by the following expression:
Where R is the gas's particular constant defined in terms of Cp and Cv:
For particular values given:
The gamma undimensional constant is also expressed as a function of Cv and Cp:
And the variable T is the temperature in Kelvin. Thus for the known temperature:
The Jules unit can expressing by:
Replacing the new units for the speed of the sound:

Answer:
Explanation:
load = 4500lb lift height= 30 ft
time =15 s
velocity=
ft/s
velocity=2 ft/s
power = force
velocity
power=
power= 9000 lb ft/s
1 hp= 550 lb ft/s
power=
hp
Answer:
a) 

b)

Explanation:
Given that:
diameter d = 12 in
thickness t = 0.25 in
the radius = d/2 = 12 / 2 = 6 in
r/t = 6/0.25 = 24
24 > 10
Using the thin wall cylinder formula;
The valve A is opened and the flowing water has a pressure P of 200 psi.
So;




b)The valve A is closed and the water pressure P is 250 psi.
where P = 250 psi






The free flow body diagram showing the state of stress on a volume element located on the wall at point B is attached in the diagram below
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}