Answer:
b)1.08 N
Explanation:
Given that
velocity of air V= 45 m/s
Diameter of pipe = 2 cm
Force exerted by fluid F
So force exerted in x-direction
F=0.763 N
So force exerted in y-direction
F=0.763 N
So the resultant force R
R=1.079
So the force required to hold the pipe is 1.08 N.
Answer:
(a) Calculate the rod base temperature (°C). = 299.86°C
(b) Determine the rod length (mm) for the case where the ratio of the heat transfer from a finite length fin to the heat transfer from a very long fin under the same conditions is 99 percent. = 0.4325m
Explanation:
see attached file below
Answer:
6.99 x 10⁻³ m³ / s
Explanation:
Th e pressure difference at the two ends of the delivery pipe due to atmospheric pressure and water column will cause flow of water.
h = difference in the height of water column at two ends of delivery pipe
6 - 1 = 5 m
Velocity of flow of water
v = √2gh
= √ (2 x 9.8 x 5)
= 9.9 m /s
Volume of water flowing per unit time
velocity x cross sectional area
= 9.9 x 3.14 x .015²
= 6.99 x 10⁻³ m³ / s
Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}