Answer:
F = 8552.7N
Explanation:
We need first our values, that are,

We start to calculate the relative velocity, that is,

With the relative velocity we can calculate the mass flow rate, given by,



We need to define the Force in the direction of the flow,




Answer:
Nuclear fission is almost 8,000 times more efficient than traditional fossil fuels at producing energy. That's a lot of energy packed into a small space. Nuclear energy is more efficient, which means it uses less fuel to power the plant and produces less waste.
advantages:
-produces no polluting gases
-does not contribute to global warming
-very low fuel costs
-Low fuel quantity reduces mining and transportation effects on environment
-High technology research required benefits other industries
-Power station has very long lifetime
Disadvantages:
-Waste is radioactive and safe disposal is very difficult and expensive
-Local thermal pollution from wastewater affects marine life
-Large-scale accidents can be catastrophic
-Public perception of nuclear power is negative
-Costs of building and safely decommissioning are very high
-Cannot react quickly to changes in electricity demand
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;
}
Answer:
The world's oldest dress called the Tarkhan Dress is at 5,100 to 5,500 years of age.
Does that help? Or do you need something else? I can change my answer if this is not what you need! :D
Explanation: