Answer:
report on a fight you have witnessed
Answer:
2.27secs
Explanation:
The car will take 2.27secs to reach a speed of 10 ft/s.
Kindly go through the attached files for a step by step solution that will show you how the answer was gotten and the normal reaction of both the front and rear wheels.
Answer:
C)185,500 KJ
Explanation:
Given that
Latent heat fusion = 333.23 KJ/kg
Latent heat vaporisation = 333.23 KJ/kg
Mass of ice = 100 kg
Mass of water = 40 kg
Mass of vapor=60 kg
Ice at 0°C ,first it will take latent heat of vaporisation and remain at constant temperature 0°C and it will convert in to water.After this water which at 0°C will take sensible heat and gets heat up to 100°C.After that at 100°C vapor will take heat as heat of vaporisation .
Sensible heat for water Q

For water

Q=4.178 x 40 x 100 KJ
Q=16,712 KJ
So total heat
Total heat =100 x 333.23+16,712 + 60 x 2257 KJ
Total heat =185,455 KJ
Approx Total heat = 185,500 KJ
So the answer C is correct.
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;
}